aboutsummaryrefslogtreecommitdiff
path: root/app/mainwindow.hpp
blob: a6c1be39d975c49c83d3ae9bb3852b144511dc8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MAIN_H
#define MAIN_H

#include <QMainWindow>

#include "draw.hpp"

class MainWindow : public QMainWindow {
    Q_OBJECT

    public:
        MainWindow();

    private:
        DrawWidget drawer;

};

#endif