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 vtTrackball;
9 class vtGroup;
10 
11 // Define a new application type
12 class vtApp: public wxApp
13 {
14 public:
15  bool OnInit(void);
16  int OnExit(void);
17 
18  vtTrackball *m_pTrackball;
19  vtGroupPtr m_pRoot;
20 };
21