]> git.sur5r.net Git - fstl/blob - src/app.h
Derived App from QApplication
[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
14 signals:
15
16 public slots:
17
18 private:
19     Window* window;
20
21 };
22
23 #endif // APP_H