class simpleApp : public application { public: simpleApp() : application("simple application") { } }; void main() { simpleApp theApp; theApp.run(); };