| 691 | |
| 692 | |
| 693 | std::string SingleCommand::GetOptionsList() |
| 694 | { |
| 695 | std::stringstream r; |
| 696 | for (auto const &opt : options) |
| 697 | { |
| 698 | r << opt->get_option_list_prefixed() << " "; |
| 699 | } |
| 700 | return r.str(); |
| 701 | } |
| 702 | |
| 703 | |
| 704 | std::string SingleCommand::CallArgumentHelper(const std::string &option_name) |
no test coverage detected