///////////////////////////////////////////////////////////////////////////// // Name: main.h // Purpose: // Author: // Modified by: // Created: 07/05/2009 17:23:39 // RCS-ID: // Copyright: // Licence: ///////////////////////////////////////////////////////////////////////////// #ifndef _AEINSTALLERAPP_H_ #define _AEINSTALLERAPP_H_ /*! * Includes */ ////@begin includes #include "wx/image.h" #include "main_window.h" ////@end includes /*! * Forward declarations */ ////@begin forward declarations ////@end forward declarations /*! * Control identifiers */ ////@begin control identifiers ////@end control identifiers /*! * AEInstallerApp class declaration */ class AEInstallerApp: public wxApp { DECLARE_CLASS( AEInstallerApp ) DECLARE_EVENT_TABLE() public: /// Constructor AEInstallerApp(); void Init(); /// Initialises the application virtual bool OnInit(); /// Called on exit virtual int OnExit(); ////@begin AEInstallerApp event handler declarations ////@end AEInstallerApp event handler declarations ////@begin AEInstallerApp member function declarations ////@end AEInstallerApp member function declarations ////@begin AEInstallerApp member variables ////@end AEInstallerApp member variables }; /*! * Application instance declaration */ ////@begin declare app DECLARE_APP(AEInstallerApp) ////@end declare app #endif // _AEINSTALLERAPP_H_