]>
git.saurik.com Git - wxWidgets.git/blob - samples/xrc/xrcdemo.h
1 //-----------------------------------------------------------------------------
3 // Purpose: XML resources sample: Main application file
4 // Author: Robert O'Connor (rob@medicalmnemonics.com), Vaclav Slavik
5 // Copyright: (c) Robert O'Connor and Vaclav Slavik
6 // Licence: wxWindows licence
7 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
10 // Begin single inclusion of this .h file condition
11 //-----------------------------------------------------------------------------
16 //-----------------------------------------------------------------------------
18 //-----------------------------------------------------------------------------
20 #include "wx/app.h" // wxApp
22 //-----------------------------------------------------------------------------
23 // Class definition: MyApp
24 //-----------------------------------------------------------------------------
26 // Define a new application type, each program should derive a class from wxApp
27 class MyApp
: public wxApp
32 // Override base class virtuals:
33 // wxApp::OnInit() is called on application startup and is a good place
34 // for the app initialization (doing it here and not in the ctor
35 // allows to have an error return: if OnInit() returns false, the
36 // application terminates)
37 virtual bool OnInit();
41 //-----------------------------------------------------------------------------
42 // End single inclusion of this .h file condition
43 //-----------------------------------------------------------------------------