]> Shamusworld >> Repos - ttedit/blob - src/ttedit.h
1aa2b0e20dbb904d9e221c9af32aac4bd1c21e30
[ttedit] / src / ttedit.h
1 //
2 // TTEDIT.H: Header file
3 //
4 // by James L. Hammons
5 // (C) 2009 Underground Software
6 //
7
8 #ifndef __TTEDIT_H__
9 #define __TTEDIT_H__
10
11 //Hrm. uh??? I thought this wasn't the way to do this stuff...???
12 #include <QtGui>
13
14 // Forward declarations
15 class CharWindow;
16 class TTEMainWindow;
17
18 class TTEdit: public QApplication
19 {
20         public:
21                 TTEdit(int argc, char * argv[]);
22
23         public:
24                 CharWindow * charWnd;
25                 TTEMainWindow * mainWindow;
26 };
27
28 #endif  // __TTEDIT_H__