Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
app.h
1 //
2 // Name: app.h
3 //
4 // Copyright (c) 2001-2003 Virtual Terrain Project
5 // Free for all uses, see license.txt for details.
6 //
7 
8 class vtTerrainScene;
9 class vtFrame;
10 
11 // Define a new application type
12 class vtApp: public wxApp
13 {
14 public:
15  bool OnInit(void);
16  bool CreateScene();
17  int OnExit();
18 
19  vtFrame *m_pFrame;
20  vtTerrainScene *m_pTerrainScene;
21 };
22