/**
@class wxModule
- @wxheader{module.h}
The module system is a very simple mechanism to allow applications (and parts
of wxWidgets itself) to define initialization and cleanup functions that are
{
public:
wxDDEModule() { }
- virtual bool OnInit() { wxDDEInitialize(); return @true; };
+ virtual bool OnInit() { wxDDEInitialize(); return true; };
virtual void OnExit() { wxDDECleanUp(); };
private:
/**
Destructor.
*/
- ~wxModule();
+ virtual ~wxModule();
//@{
/**