Skip to content

Commit

Permalink
Adding example of completely custom help option
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Nov 27, 2017
1 parent fc69345 commit b2376bd
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ add_cli_exe(groups groups.cpp)
add_cli_exe(inter_argument_order inter_argument_order.cpp)
add_cli_exe(prefix_command prefix_command.cpp)
add_cli_exe(enum enum.cpp)
add_cli_exe(modhelp modhelp.cpp)

add_subdirectory(subcom_in_files)
31 changes: 31 additions & 0 deletions examples/modhelp.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// Modify the help print so that argument values are accessible
// Note that this will not shortcut `->required` and other similar options

#include "CLI/CLI.hpp"

#include <iostream>

int main(int argc, char **argv) {
CLI::App test;

// Remove help flag because it shortcuts all processing
test.set_help_flag();

// Add custom flag that activates help
auto help = test.add_flag("-h,--help", "Request help");

std::string some_option;
test.add_option("-a", some_option, "Some description");

try {
test.parse(argc, argv);
if(*help)
throw CLI::CallForHelp();
} catch (const CLI::Error &e) {
std::cout << "Option string:" << some_option << std::endl;
return test.exit(e);
}

std::cout << "Option string:" << some_option << std::endl;
return 0;
}

0 comments on commit b2376bd

Please sign in to comment.