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.
18 lines
236 B
18 lines
236 B
6 years ago
|
#include <iostream>
|
||
|
|
||
|
#include <cpp_utils/ArgParse.hpp>
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
ArgParse a("");
|
||
|
try {
|
||
|
a.parseArgs(argc, argv);
|
||
|
} catch(...) {
|
||
|
std::cerr << a.usage();
|
||
|
return EXIT_FAILURE;
|
||
|
}
|
||
|
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|