]> Shamusworld >> Repos - ttedit/blob - src/ttedit.h
Fix zoom to zoom in/out from the center.
[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 #include <QtWidgets>
12
13 // Forward declarations
14 class CharWindow;
15 class MainWindow;
16
17 class TTEdit: public QApplication
18 {
19         public:
20                 TTEdit(int & argc, char * argv[]);
21
22         public:
23                 CharWindow * charWnd;
24                 MainWindow * mainWindow;
25 };
26
27 #endif  // __TTEDIT_H__