| 75 | } |
| 76 | } |
| 77 | CLI::App* OptionsContainer::AddSubcommand_(std::string name, std::string desc) |
| 78 | { |
| 79 | pCurrentSubcommand_ = app_.add_subcommand(std::move(name), std::move(desc)); |
| 80 | return pCurrentSubcommand_; |
| 81 | } |
| 82 | void OptionsContainer::RegisterElement_(OptionsElement_* pElement) |
| 83 | { |
| 84 | elementPtrs_.push_back(pElement); |
nothing calls this directly
no outgoing calls
no test coverage detected