15 lines
294 B
C++
15 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;
|
||
|
|
}
|