// inputparser.h // @author iain #ifndef INPUTPARSER_H #define INPUTPARSER_H #include class InputParser { std::vector tokens; public: InputParser (int &argc, char **argv); const std::string& getCmdOption(const std::string &option) const; bool cmdOptionExists(const std::string &option) const; }; #endif // ___INPUTPARSER_H