2017-08-23 13:27:23 +02:00
|
|
|
#include "DatabaseInspectorWidget.h"
|
|
|
|
|
#include "ui_DatabaseInspectorWidget.h"
|
2017-01-25 06:54:21 +01:00
|
|
|
|
|
|
|
|
DatabaseInspectorWidget::DatabaseInspectorWidget(QWidget *parent) :
|
|
|
|
|
QWidget(parent),
|
|
|
|
|
ui(new Ui::DatabaseInspectorWidget)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DatabaseInspectorWidget::~DatabaseInspectorWidget()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|