First version of table overview tab, only design no implementation yet
This commit is contained in:
parent
cd4e99cd11
commit
43e6042794
4 changed files with 110 additions and 3 deletions
14
pglab/TablesPage.cpp
Normal file
14
pglab/TablesPage.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "TablesPage.h"
|
||||
#include "ui_TablesPage.h"
|
||||
|
||||
TablesPage::TablesPage(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::TablesPage)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
TablesPage::~TablesPage()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue