| 631 | |
| 632 | |
| 633 | SingleCommandOption::Ptr SingleCommand::AddOption(const std::string &longopt, |
| 634 | const char shortopt, |
| 635 | const std::string &help_text) |
| 636 | { |
| 637 | auto opt = SingleCommandOption::Create(longopt, |
| 638 | shortopt, |
| 639 | help_text); |
| 640 | options.push_back(opt); |
| 641 | return opt; |
| 642 | } |
| 643 | |
| 644 | |
| 645 | SingleCommandOption::Ptr SingleCommand::AddOption(const std::string &longopt, |
no outgoing calls