diff options
Diffstat (limited to 'mainwindow.h')
| -rw-r--r-- | mainwindow.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h new file mode 100644 index 0000000..ef1225e --- /dev/null +++ b/mainwindow.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #include <QMainWindow> | ||
| 2 | |||
| 3 | QT_BEGIN_NAMESPACE | ||
| 4 | namespace Ui { | ||
| 5 | class MainWindow; | ||
| 6 | } | ||
| 7 | QT_END_NAMESPACE | ||
| 8 | |||
| 9 | class MainWindow : public QMainWindow | ||
| 10 | { | ||
| 11 | Q_OBJECT | ||
| 12 | |||
| 13 | public: | ||
| 14 | MainWindow(QWidget *parent = nullptr); | ||
| 15 | ~MainWindow(); | ||
| 16 | |||
| 17 | private: | ||
| 18 | Ui::MainWindow *ui; | ||
| 19 | }; | ||
