]> git.sur5r.net Git - fstl/blob - src/app.h
2e06c249b26d2b20f6a59843f37bfe54332f4f0e
[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 protected:
14     bool event(QEvent* e);
15 private:
16     Window* const window;
17
18 };
19
20 #endif // APP_H