]> Shamusworld >> Repos - schematic/blob - src/main.h
Move DB access to NoteDialog class, new AlertDialog class.
[schematic] / src / main.h
1 //
2 // main.h: Header file
3 //
4 // by James L. Hammons
5 // (C) 2012 Underground Software
6 //
7
8 #ifndef __MAIN_H__
9 #define __MAIN_H__
10
11 #include <QtGui>
12
13 // Forward declarations
14 class MainWindow;
15
16 class MainApp: public QApplication
17 {
18         public:
19                 MainApp(int & argc, char * argv[]);
20
21         public:
22                 MainWindow * mainWindow;
23 };
24
25 #endif  // __MAIN_H__