2022-11-13 16:50:27 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2022-10-04 01:53:37 +00:00
|
|
|
#include <argparse/argparse.hpp>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
argparse::ArgumentParser program("test");
|
|
|
|
|
|
|
|
program.add_argument("--color")
|
|
|
|
.default_value(std::string{
|
|
|
|
"orange"}) // might otherwise be type const char* leading to an error
|
|
|
|
// when trying program.get<std::string>
|
|
|
|
.help("specify the cat's fur color");
|
|
|
|
|
|
|
|
try {
|
|
|
|
program.parse_args(argc, argv); // Example: ./main --color orange
|
2023-12-18 02:29:05 +00:00
|
|
|
} catch (const std::exception &err) {
|
2022-10-04 01:53:37 +00:00
|
|
|
std::cerr << err.what() << std::endl;
|
|
|
|
std::cerr << program;
|
2023-09-01 02:09:34 +00:00
|
|
|
return 1;
|
2022-10-04 01:53:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto color = program.get<std::string>("--color"); // "orange"
|
|
|
|
auto explicit_color =
|
|
|
|
program.is_used("--color"); // true, user provided orange
|
|
|
|
std::cout << "Color: " << color << "\n";
|
|
|
|
std::cout << "Argument was explicitly provided by user? " << std::boolalpha
|
|
|
|
<< explicit_color << "\n";
|
|
|
|
}
|