diff options
Diffstat (limited to '')
-rw-r--r-- | MapTool/mtmainwindow.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MapTool/mtmainwindow.cpp b/MapTool/mtmainwindow.cpp new file mode 100644 index 0000000..587d0c3 --- /dev/null +++ b/MapTool/mtmainwindow.cpp @@ -0,0 +1,14 @@ +#include "mtmainwindow.h" +#include "ui_mtmainwindow.h" + +MTMainWindow::MTMainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MTMainWindow) +{ + ui->setupUi(this); +} + +MTMainWindow::~MTMainWindow() +{ + delete ui; +} |