1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-29 12:13:52 +00:00
CLI11/examples/try1.cpp
Henry Fredrick Schreiner 27f718125d Reformat with clang-format
2017-05-31 12:03:05 -04:00

28 lines
909 B
C++

#include "CLI/CLI.hpp"
int main(int argc, char **argv) {
CLI::App app("K3Pi goofit fitter");
app.add_flag("--random", "Some random flag");
CLI::App *start = app.add_subcommand("start", "A great subcommand");
CLI::App *stop = app.add_subcommand("stop", "Do you really want to stop?");
std::string file;
start->add_option("-f,--file", file, "File name");
CLI::Option *s = stop->add_flag("-c,--count", "Counter");
try {
app.parse(argc, argv);
} catch(const CLI::Error &e) {
return app.exit(e);
}
std::cout << "Working on file: " << file << ", direct count: " << start->count("--file") << std::endl;
std::cout << "Working on count: " << s->count() << ", direct count: " << stop->count("--count") << std::endl;
for(auto subcom : app.get_subcommands())
std::cout << "Subcommand:" << subcom->get_name() << std::endl;
return 0;
}