diff options
Diffstat (limited to '')
-rw-r--r-- | MapTool/mtmainwindow.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MapTool/mtmainwindow.h b/MapTool/mtmainwindow.h new file mode 100644 index 0000000..a73b9e0 --- /dev/null +++ b/MapTool/mtmainwindow.h @@ -0,0 +1,21 @@ +#ifndef MTMAINWINDOW_H +#define MTMAINWINDOW_H + +#include <QMainWindow> + +namespace Ui { + class MTMainWindow; +} + +class MTMainWindow : public QMainWindow { + Q_OBJECT + +public: + explicit MTMainWindow(QWidget *parent = 0); + ~MTMainWindow(); + +private: + Ui::MTMainWindow *ui; +}; + +#endif // MTMAINWINDOW_H |