]> git.sur5r.net Git - fstl/blob - src/app.h
New upstream version 0.9.4
[fstl] / src / app.h
1 #ifndef APP_H
2 #define APP_H
3
4 #include <QApplication>
5
6 class Window;
7
8 class App : public QApplication
9 {
10     Q_OBJECT
11 public:
12     explicit App(int& argc, char *argv[]);
13         ~App();
14 protected:
15     bool event(QEvent* e) override;
16 private:
17     Window* const window;
18
19 };
20
21 #endif // APP_H