mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-30 04:33:53 +00:00
Fixing format of new example
This commit is contained in:
parent
b010775051
commit
29b36857fd
@ -6,26 +6,26 @@
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
CLI::App test;
|
||||
CLI::App test;
|
||||
|
||||
// Remove help flag because it shortcuts all processing
|
||||
test.set_help_flag();
|
||||
// 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");
|
||||
// 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");
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user