1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-30 04:33:53 +00:00
Henry Fredrick Schreiner 6d26440b6e Clean up and shared ptr
2017-10-27 15:52:41 -04:00

24 lines
614 B
C++

// ===================================================================
// main.cpp
// ===================================================================
#include "subcommand_a.hpp"
int main( int argc, char** argv ) {
CLI::App app{"..."};
// Call the setup functions for the subcommands.
// They are kept alive by a shared pointer in the
// lambda function held by CLI11
setup_subcommand_a( app );
// Make sure we get at least one subcommand
app.require_subcommand();
// More setup if needed, i.e., other subcommands etc.
CLI11_PARSE(app, argc, argv);
return 0;
}