1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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