diff options
Diffstat (limited to 'app/mainwindow.hpp')
-rw-r--r-- | app/mainwindow.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/mainwindow.hpp b/app/mainwindow.hpp new file mode 100644 index 0000000..a6c1be3 --- /dev/null +++ b/app/mainwindow.hpp @@ -0,0 +1,19 @@ +#ifndef MAIN_H +#define MAIN_H + +#include <QMainWindow> + +#include "draw.hpp" + +class MainWindow : public QMainWindow { + Q_OBJECT + + public: + MainWindow(); + + private: + DrawWidget drawer; + +}; + +#endif |