diff options
Diffstat (limited to 'examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp')
| -rw-r--r-- | examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp new file mode 100644 index 0000000..49d64fc --- /dev/null +++ b/examples/yocto/meta-mini/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp @@ -0,0 +1,14 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + ui->setupUi(this); +} + +MainWindow::~MainWindow() +{ + delete ui; +} |
