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.
Add unnamed subcommand (CLIUtils#216)
increment the parse_ variable on unnamed subcommands. update the readme, and add a formatter test for nameless subcommands in nondefault group with other named subcommands. add a test of default arguments add a formatter test add tests for unnamed subcommands and an example of the partitioned subcommands. change the app_p to be a shared_ptr so you can add an App later on and merge them together add the ability to add unnamed subcommands that allow partitioning on options into multiple apps.
- Loading branch information
Showing
7 changed files
with
408 additions
and
26 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
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,37 @@ | ||
#include "CLI/CLI.hpp" | ||
#include "CLI/Timer.hpp" | ||
|
||
int main(int argc, char **argv) { | ||
CLI::AutoTimer("This is a timer"); | ||
|
||
CLI::App app("K3Pi goofit fitter"); | ||
|
||
CLI::App_p impOpt = std::make_shared<CLI::App>("Important"); | ||
std::string file; | ||
CLI::Option *opt = impOpt->add_option("-f,--file,file", file, "File name")->required(); | ||
|
||
int count; | ||
CLI::Option *copt = impOpt->add_flag("-c,--count", count, "Counter")->required(); | ||
|
||
CLI::App_p otherOpt = std::make_shared<CLI::App>("Other"); | ||
double value; // = 3.14; | ||
otherOpt->add_option("-d,--double", value, "Some Value"); | ||
|
||
// add the subapps to the main one | ||
app.add_subcommand(impOpt); | ||
app.add_subcommand(otherOpt); | ||
|
||
try { | ||
app.parse(argc, argv); | ||
} catch(const CLI::ParseError &e) { | ||
return app.exit(e); | ||
} | ||
|
||
std::cout << "Working on file: " << file << ", direct count: " << impOpt->count("--file") | ||
<< ", opt count: " << opt->count() << std::endl; | ||
std::cout << "Working on count: " << count << ", direct count: " << impOpt->count("--count") | ||
<< ", opt count: " << copt->count() << std::endl; | ||
std::cout << "Some value: " << value << std::endl; | ||
|
||
return 0; | ||
} |
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
Oops, something went wrong.