int main() { MyApplication app; app.Run(); return 0; }
int main() { MyApplication *myApp; myApp = new MyApplication; myApp->Run(); delete (myApp); return (0); }
int main( void ) { cout << "sIRC 0.03" << endl; cout << "Syllable Internet Relay Chat Client" << endl; cout << "By James Coxon 2006" << endl; cout << "*****@*****.**" << endl; MyApplication *thisApp; thisApp = new MyApplication(); thisApp->Run(); cout << "Quitting" << endl; return( 0 ); }