diff options
Diffstat (limited to 'tests/plugins/pack/qtapp/src/mainwindow.cpp')
| -rw-r--r-- | tests/plugins/pack/qtapp/src/mainwindow.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/plugins/pack/qtapp/src/mainwindow.cpp b/tests/plugins/pack/qtapp/src/mainwindow.cpp new file mode 100644 index 000000000..7002a54ea --- /dev/null +++ b/tests/plugins/pack/qtapp/src/mainwindow.cpp @@ -0,0 +1,16 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) + : QMainWindow(parent) + , ui(new Ui::MainWindow) +{ + ui->setupUi(this); + setWindowTitle("Qt Widget App"); +} + +MainWindow::~MainWindow() +{ + delete ui; +} + |
