BlockIPPlatform
 All Classes Files Functions Variables
wxWidgetsApp.h
Go to the documentation of this file.
1 
6 #ifndef __WXWIDGETSAPP_H
7 #define __WXWIDGETSAPP_H
8 
9 #include <wx/wx.h>
10 
11 class wxWidgetsApp : public wxApp
12 {
13  public:
14  wxWidgetsApp();
15  virtual ~wxWidgetsApp();
16  virtual bool OnInit();
17 };
18 
19 DECLARE_APP(wxWidgetsApp)
20 
21 #endif