23 lines
271 B
C
23 lines
271 B
C
|
|
#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
|