7 for (
int i=1; i < argc; ++i)
8 this->tokens.push_back(std::string(argv[i]));
13 std::vector<std::string>::const_iterator itr;
14 itr = std::find(this->tokens.begin(), this->tokens.end(), option);
16 if (itr != this->tokens.end() && ++itr != this->tokens.end()){
20 static const std::string empty_string(
"");
26 return std::find(this->tokens.begin(), this->tokens.end(), option)
27 != this->tokens.end();