1 #ifndef CONFIGURATION_H_
2 #define CONFIGURATION_H_
6 #include <boost/program_options.hpp>
8 namespace remote
{ namespace diku_mcs
{
10 namespace po
= boost::program_options
;
12 /** This class reads options from a configuration file
13 * and from the command prompt. The Boost Program options
14 * library is used to parse the options.
19 /** Read command line options and options from
21 * \param ac Number of command line arguments
22 * \param av string array of command line arguments
24 static void read( int ac
, char** av
);
25 /** Option variable map keyed by option name **/
26 static po::variables_map vm
;
31 #endif /*CONFIGURATION_H_*/