source: sample/pingpong/main.cpp@ 2410

Last change on this file since 2410 was 2410, checked in by mies, 15 years ago

adapted ping pong example

File size: 597 bytes
Line 
1#include <string>
2#include "ariba/utility/system/StartupWrapper.h"
3#include "TidyPingPong.h"
4
5using std::string;
6using ariba::utility::StartupWrapper;
7using ariba::application::pingpong::PingPong;
8
9int main( int argc, char** argv ) {
10
11 // get config file
12 string config = "../etc/settings.cnf";
13 if (argc >= 2) config = argv[1];
14
15 StartupWrapper::initConfig( config );
16 StartupWrapper::initSystem();
17
18 // this will do the main functionality and block
19 PingPong ping;
20 StartupWrapper::startup(&ping, true);
21
22 // this will run blocking until <enter> is hit
23 StartupWrapper::shutdown();
24 return 0;
25}
Note: See TracBrowser for help on using the repository browser.