Making an option by hand is not defined, it must be made by the App class
| 3641 | |
| 3642 | /// Making an option by hand is not defined, it must be made by the App class |
| 3643 | Option(std::string option_name, std::string option_description, callback_t callback, App *parent) |
| 3644 | : description_(std::move(option_description)), parent_(parent), callback_(std::move(callback)) { |
| 3645 | std::tie(snames_, lnames_, pname_) = detail::get_names(detail::split_names(option_name)); |
| 3646 | } |
| 3647 | |
| 3648 | public: |
| 3649 | /// @name Basic |
nothing calls this directly
no test coverage detected