#ifndef __ARGS__H_ #define __ARGS__H_ #include #include #include namespace mx { using std::string; class mxArgs { public: explicit mxArgs(int &argc, char **argv); bool testForSwitchAndRemove(string what); bool testForSwitchAndLeave(string what); string testForItem(string what); protected: std::vector arglist; }; } #endif