pgLab/pglab/DatabaseInspectorWidget.cpp
Eelke Klein 04723a289b Switching to linux for development of pglab.
Switched from qmake to cmake. Code changes to make it compile.
2017-08-23 08:10:01 +02:00

14 lines
294 B
C++

#include "databaseinspectorwidget.h"
#include "ui_databaseinspectorwidget.h"
DatabaseInspectorWidget::DatabaseInspectorWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::DatabaseInspectorWidget)
{
ui->setupUi(this);
}
DatabaseInspectorWidget::~DatabaseInspectorWidget()
{
delete ui;
}