1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/////////////////////////////////////////////////////////////////////////////
// Name: module.h
// Purpose: Modules handling
// Author: Wolfram Gloger/adapted by Guilhem Lavaux
// Modified by:
// Created: 04/11/98
// RCS-ID: $Id: module.h,v 1.3.4.1 2000/03/24 01:55:52 VZ Exp $
// Copyright: (c) Wolfram Gloger and Guilhem Lavaux
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_MODULEH__
#define _WX_MODULEH__
#ifdef __GNUG__
#pragma interface "module.h"
#endif
#include "wx/object.h"
#include "wx/list.h"
// declare a linked list of modules
class wxModule;
WX_DECLARE_EXPORTED_LIST(wxModule, wxModuleList);
// declaring a class derived from wxModule will automatically create an
// instance of this class on program startup, call its OnInit() method and call
// OnExit() on program termination (but only if OnInit() succeeded)
class WXDLLEXPORT wxModule : public wxObject
{
public:
wxModule() {}
virtual ~wxModule() {}
// if module init routine returns FALSE application will fail to startup
bool Init() { return OnInit(); }
void Exit() { OnExit(); }
// Override both of these
// called on program startup
virtual bool OnInit() = 0;
// called just before program termination, but only if OnInit()
// succeeded
virtual void OnExit() = 0;
static void RegisterModule(wxModule* module);
static void RegisterModules();
static bool InitializeModules();
static void CleanUpModules();
protected:
static wxModuleList m_modules;
DECLARE_CLASS(wxModule)
};
#endif // _WX_MODULEH__
|