#ifndef gemc_OPTIONS_H #define gemc_OPTIONS_H // %%%%%%%%%%% // C++ headers // %%%%%%%%%%% #include #include #include #include #include using namespace std; class opts { public: double arg; string args; string name; string help; int type; string ctgr; }; class gemc_opts { public: gemc_opts(); ~gemc_opts(); int Set(int argc, char **args); map args; }; vector init_dmesg(gemc_opts); vector init_dvmesg(gemc_opts); #endif