diff options
Diffstat (limited to 'tests/plugins/pack/qtapp/src/mainwindow.h')
| -rw-r--r-- | tests/plugins/pack/qtapp/src/mainwindow.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/plugins/pack/qtapp/src/mainwindow.h b/tests/plugins/pack/qtapp/src/mainwindow.h new file mode 100644 index 000000000..1f2d99bae --- /dev/null +++ b/tests/plugins/pack/qtapp/src/mainwindow.h @@ -0,0 +1,23 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = nullptr); + ~MainWindow(); + +private: + Ui::MainWindow *ui; +}; + +#endif // MAINWINDOW_H + |
