First version of table overview tab, only design no implementation yet

This commit is contained in:
eelke 2017-12-10 08:17:07 +01:00
parent cd4e99cd11
commit 43e6042794
4 changed files with 110 additions and 3 deletions

22
pglab/TablesPage.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef TABLESPAGE_H
#define TABLESPAGE_H
#include <QWidget>
namespace Ui {
class TablesPage;
}
class TablesPage : public QWidget
{
Q_OBJECT
public:
explicit TablesPage(QWidget *parent = 0);
~TablesPage();
private:
Ui::TablesPage *ui;
};
#endif // TABLESPAGE_H