1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-29 20:23:55 +00:00
CLI11/examples/try1.cpp
Henry Fredrick Schreiner d070f32ed6 Adding cmake, tests
2017-01-26 16:48:30 -05:00

26 lines
755 B
C++

#include "CLI.hpp"
int main (int argc, char** argv) {
CLI::App app("K3Pi goofit fitter");
CLI::App* start = app.add_subcommand("start");
CLI::App* stop = app.add_subcommand("stop");
std::cout << app.help();
std::string file;
start->add_option("f,file", file, "File name");
int count;
stop->add_flag("c,count", count, "File name");
app.start(argc, argv);
std::cout << "Working on file: " << file << ", direct count: " << start->count("file") << std::endl;
std::cout << "Working on count: " << count << ", direct count: " << stop->count("count") << std::endl;
if(app.get_subcommand() != nullptr)
std::cout << "Subcommand:" << app.get_subcommand()->get_name() << std::endl;
return 0;
}