// // Created by mwo on 6/11/15. // #ifndef XMREG01_CMDLINEOPTIONS_H #define XMREG01_CMDLINEOPTIONS_H #include #include #include #include namespace xmreg { using namespace std; using namespace boost::program_options; /** * Manages program options of this example program. * * Basically a wrapper for boost::program_options */ class CmdLineOptions { variables_map vm; public: CmdLineOptions(int acc, const char *avv[]); template boost::optional get_option(const string & opt_name) const; }; } #endif //XMREG01_CMDLINEOPTIONS_H