#include <Application.h>

Public Member Functions | |
| virtual int | run (int argc=0, char **argv=NULL)=0 |
| Run the application. | |
Any application you write with UTL++ should contain a single class that inherits from Application. Application's constructor calls utl::init(), and its destructor calls utl::deInit().
Definition at line 26 of file Application.h.
| virtual int utl::Application::run | ( | int | argc = 0, |
|
| char ** | argv = NULL | |||
| ) | [pure virtual] |
Run the application.
| argc | number of parameters (as in main()) | |
| argv | array of parameters (as in main()) |
1.5.6