| 176 | } |
| 177 | |
| 178 | bool CommandLine::hasArg(const char _short, const char* _long) const |
| 179 | { |
| 180 | const char* arg = findOption(_short, _long, int32_t(0) ); |
| 181 | return NULL != arg; |
| 182 | } |
| 183 | |
| 184 | bool CommandLine::hasArg(const char* _long) const |
| 185 | { |
no test coverage detected