* Adds a new option to the current command. This takes only a * long option without any additional value arguments. * * @param longopt std::string of the long option name to use * @param help_text std::string containing the help text used on the * --help screen for this command * * @return Returns SingleCommandOption::Ptr belonging to the n
| 726 | * |
| 727 | */ |
| 728 | SingleCommandOption::Ptr AddOption(const std::string &longopt, |
| 729 | const std::string &help_text) |
| 730 | { |
| 731 | return AddOption(longopt, 0, help_text); |
| 732 | } |
| 733 | |
| 734 | |
| 735 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected