]> Shamusworld >> Repos - warehouse-man-deluxe/blob - src/app.h
68bc82dd4256cfccb1511423f80ef3fb81c444bf
[warehouse-man-deluxe] / src / app.h
1 #ifndef __APP_H__
2 #define __APP_H__
3
4 #include <QtGui>
5
6 // Forward declarations
7 class MainWin;
8
9 class App: public QApplication
10 {
11         public:
12                 App(int & argc, char * argv[]);
13                 ~App();
14
15         public:
16                 MainWin * mainWindow;
17 };
18
19 #endif  // __APP_H__
20