#include <application_base.h>
Inheritance diagram for application_base:


Public Member Functions | |
| virtual | ~application_base () |
| virtual int | execute ()=0 |
| performs the main activity of this particular application object. | |
This mainly defines an entry point into the application's real functionality. Derived versions of the application_base can layer in more functionality as appropriate for different types of applications.
Definition at line 33 of file application_base.h.
| application_base::~application_base | ( | ) | [virtual] |
Definition at line 20 of file application_base.cpp.
| virtual int application_base::execute | ( | ) | [pure virtual] |
performs the main activity of this particular application object.
the method must be overridden by the derived object. a return value for the program as a whole should be returned. one's main program should call this after constructing the derived shell object; see the bottom of this file for an example.
Implemented in version_stamper, write_build_config, tiny_shell, wx_tiny_shell, application_shell, t_wxext_frame, and test_nt_security.
1.5.1