]> Shamusworld >> Repos - wozmaker/blob - src/app.h
Flesh out the disk settings dialog.
[wozmaker] / src / app.h
1 #ifndef __APP_H__
2 #define __APP_H__
3
4 #include <QtWidgets>
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