diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-04 16:00:37 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-04 16:00:37 +0200 |
| commit | 7ee1669522bdb6c2c6dae6a0ad7f9a9a60f87ff5 (patch) | |
| tree | e97658f411184a15a0d893f9bfda225a606f03a0 /mainwindow.h | |
| download | minimal-qt-7ee1669522bdb6c2c6dae6a0ad7f9a9a60f87ff5.tar.gz minimal-qt-7ee1669522bdb6c2c6dae6a0ad7f9a9a60f87ff5.zip | |
Initial commit
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 | }; | ||
