コード例 #1
0
ファイル: main.cpp プロジェクト: Milswanca/Iconic2D
int main()
{
	MyApplication app;
	app.Run();

	return 0;
}
コード例 #2
0
ファイル: main.cpp プロジェクト: BackupTheBerlios/beae-svn
int main()
{
	MyApplication	*myApp;
	myApp = new MyApplication;
	myApp->Run();
	
	delete (myApp);
	return (0);
}
コード例 #3
0
ファイル: sIRC32.cpp プロジェクト: peekaye/Syllable-sIRC
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 );
}