You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
760 B
33 lines
760 B
// SPDX-License-Identifier: MIT
|
|
|
|
#include <argparse/argparse.hpp>
|
|
#include <cassert>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
argparse::ArgumentParser program("test");
|
|
program.set_prefix_chars("-+/");
|
|
|
|
program.add_argument("+f");
|
|
program.add_argument("--bar");
|
|
program.add_argument("/foo");
|
|
|
|
try {
|
|
program.parse_args(argc, argv);
|
|
} catch (const std::exception &err) {
|
|
std::cerr << err.what() << std::endl;
|
|
std::cerr << program;
|
|
return 1;
|
|
}
|
|
|
|
if (program.is_used("+f")) {
|
|
std::cout << "+f : " << program.get("+f") << "\n";
|
|
}
|
|
|
|
if (program.is_used("--bar")) {
|
|
std::cout << "--bar : " << program.get("--bar") << "\n";
|
|
}
|
|
|
|
if (program.is_used("/foo")) {
|
|
std::cout << "/foo : " << program.get("/foo") << "\n";
|
|
}
|
|
}
|