aboutsummaryrefslogtreecommitdiff
path: root/mapman/src/mainwindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mapman/src/mainwindow.hpp')
-rw-r--r--mapman/src/mainwindow.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/mapman/src/mainwindow.hpp b/mapman/src/mainwindow.hpp
new file mode 100644
index 0000000..647fcc9
--- /dev/null
+++ b/mapman/src/mainwindow.hpp
@@ -0,0 +1,26 @@
+#ifndef MAINWINDOW_HPP
+#define MAINWINDOW_HPP
+
+#include <QMainWindow>
+
+class map_library;
+class group_view;
+class slice_view;
+class diff_view;
+class QMdiArea;
+
+class mapman_main_window : public QMainWindow
+{
+ Q_OBJECT
+public:
+ mapman_main_window();
+ ~mapman_main_window();
+private:
+ map_library *l;
+ group_view *gv;
+ slice_view *sv;
+ diff_view *dv;
+ QMdiArea *cw;
+};
+
+#endif