forked from CLIUtils/CLI11
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding example of completely custom help option
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |