]> Shamusworld >> Repos - ttedit/blob - src/ttedit.h
Separated out app object, added character window.
[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
17 class TTEdit: public QApplication
18 {
19         public:
20                 TTEdit(int argc, char * argv[]);
21
22         public:
23                 CharWindow * charWnd;
24 };
25
26 #endif  // __TTEDIT_H__