14 lines
203 B
C++
14 lines
203 B
C++
#include "TablesPage.h"
|
|
#include "ui_TablesPage.h"
|
|
|
|
TablesPage::TablesPage(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::TablesPage)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
TablesPage::~TablesPage()
|
|
{
|
|
delete ui;
|
|
}
|