summaryrefslogtreecommitdiff
path: root/tclap-1.2.1/examples/test18.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tclap-1.2.1/examples/test18.cpp')
-rw-r--r--tclap-1.2.1/examples/test18.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/tclap-1.2.1/examples/test18.cpp b/tclap-1.2.1/examples/test18.cpp
new file mode 100644
index 0000000..f797745
--- /dev/null
+++ b/tclap-1.2.1/examples/test18.cpp
@@ -0,0 +1,27 @@
+#include <string>
+#include <iostream>
+#include <algorithm>
+#include "tclap/CmdLine.h"
+
+using namespace TCLAP;
+using namespace std;
+
+int main(int argc, char** argv)
+{
+ try {
+
+ CmdLine cmd("Command description message", ' ', "0.9", true);
+
+ cmd.setExceptionHandling(false);
+
+ cmd.parse(argc, argv);
+
+ } catch (ArgException &e) { // catch any exceptions
+ cerr << "error: " << e.error() << " for arg " << e.argId() << endl;
+ return 1;
+ } catch (ExitException &e) { // catch any exceptions
+ cerr << "Exiting on ExitException." << endl;
+ return e.getExitStatus();
+ }
+}
+