| 54 | } |
| 55 | |
| 56 | void cCommandlineParser::addStr(const char *name, char abbr, const char *description, const char *dflt, bool argMandatory, bool isMandatory) |
| 57 | { |
| 58 | sCmdlineOpt &opt = addOpt(name, abbr, description, eCmdlineOptType::Str, argMandatory, isMandatory); |
| 59 | opt.setStr(dflt); |
| 60 | } |
| 61 | |
| 62 | sCmdlineOpt *cCommandlineParser::findOpt(const char *name) |
| 63 | { |
no test coverage detected