| 511 | |
| 512 | |
| 513 | bool SingleCommandOption::check_long_option(const char *o) |
| 514 | { |
| 515 | if (NULL != o) |
| 516 | { |
| 517 | return (std::string(o) == longopt || std::string(o) == alias); |
| 518 | } |
| 519 | return false; |
| 520 | } |
| 521 | |
| 522 | |
| 523 | std::string SingleCommandOption::get_option_name() |
no outgoing calls
no test coverage detected