diff options
Diffstat (limited to 'QtClient/mainwindow.cpp')
-rw-r--r-- | QtClient/mainwindow.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/QtClient/mainwindow.cpp b/QtClient/mainwindow.cpp new file mode 100644 index 0000000..41a26bd --- /dev/null +++ b/QtClient/mainwindow.cpp @@ -0,0 +1,15 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) + : QMainWindow(parent) + , ui(new Ui::MainWindow) +{ + ui->setupUi(this); +} + +MainWindow::~MainWindow() +{ + delete ui; +} + |