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