cpp_photon/include/entrypoint.hpp
2005-03-15 19:21:51 +00:00

62 lines
1.4 KiB
C++

//This file is part of Photon (http://photon.sourceforge.net)
//Copyright (C) 2004-2005 James Turk
//
// Author:
// James Turk (jpt2433@rit.edu)
//
// Version:
// $Id: entrypoint.hpp,v 1.4 2005/03/15 19:22:07 cozman Exp $
#ifndef PHOTON_ENTRYPOINT_HPP
#define PHOTON_ENTRYPOINT_HPP
#include "Log.hpp"
/* Title: Entrypoint */
/*
Macro: ENTRYPOINT
A macro which is used to specify the class containing the entrypoint.
For example, if the class PongGame is the class derived from <Application>
which implements main, in the file defining PongGame it is important to
include ENTRYPOINT(PongGame) so that the entry point becomes PongGame::main.
*/
#define ENTRYPOINT(className) int main(int argc, const char** argv) \
{ return photon::mainclass<className>(argc,argv); }
namespace photon
{
// function which does all the work of MAINCLASS
template<class App>
int mainclass(int argc, const char** argv)
{
try
{
App app;
StrVec args;
for(int i=0; i < argc; ++i)
{
args.push_back(argv[i]);
}
App::setInitOptions(argv[0]);
return app.main(args);
}
catch(Exception &e)
{
Log::getInstance().error() << e;
return 0;
}
catch(Error &e)
{
Log::getInstance().critical() << e;
return 1;
}
}
}
#endif //PHOTON_ENTRYPOINT_HPP