|
| CLI11_INLINE std::string | CLI::FailureMessage::simple (const App *app, const Error &e) |
| | Printout a clean, simple message on error (the default in CLI11 1.5+)
|
| |
| CLI11_INLINE std::string | CLI::FailureMessage::help (const App *app, const Error &e) |
| | Printout the full help string on error (if this fn is set, the old default for CLI11)
|
| |
| template<typename T, enable_if_t<!std::is_integral< T >::value||(sizeof(T)<=1U), detail::enabler > = detail::dummy> |
| Option * | CLI::detail::default_flag_modifiers (Option *opt) |
| | helper functions for adding in appropriate flag modifiers for add_flag
|
| |
| CLI11_INLINE void | CLI::TriggerOn (App *trigger_app, App *app_to_enable) |
| | Helper function to enable one option group/subcommand when another is used.
|
| |
| CLI11_INLINE void | CLI::TriggerOn (App *trigger_app, std::vector< App * > apps_to_enable) |
| | Helper function to enable one option group/subcommand when another is used.
|
| |
| CLI11_INLINE void | CLI::TriggerOff (App *trigger_app, App *app_to_enable) |
| | Helper function to disable one option group/subcommand when another is used.
|
| |
| CLI11_INLINE void | CLI::TriggerOff (App *trigger_app, std::vector< App * > apps_to_enable) |
| | Helper function to disable one option group/subcommand when another is used.
|
| |
| CLI11_INLINE void | CLI::deprecate_option (Option *opt, const std::string &replacement="") |
| | Helper function to mark an option as deprecated.
|
| |
| void | CLI::deprecate_option (App *app, const std::string &option_name, const std::string &replacement="") |
| | Helper function to mark an option as deprecated.
|
| |
| void | CLI::deprecate_option (App &app, const std::string &option_name, const std::string &replacement="") |
| | Helper function to mark an option as deprecated.
|
| |
| CLI11_INLINE void | CLI::retire_option (App *app, Option *opt) |
| | Helper function to mark an option as retired.
|
| |
| CLI11_INLINE void | CLI::retire_option (App &app, Option *opt) |
| | Helper function to mark an option as retired.
|
| |
| CLI11_INLINE void | CLI::retire_option (App *app, const std::string &option_name) |
| | Helper function to mark an option as retired.
|
| |
| CLI11_INLINE void | CLI::retire_option (App &app, const std::string &option_name) |
| | Helper function to mark an option as retired.
|
| |