aboutsummaryrefslogtreecommitdiff
path: root/test/windows_h.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/windows_h.cxx')
-rw-r--r--test/windows_h.cxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/windows_h.cxx b/test/windows_h.cxx
new file mode 100644
index 0000000..a9befe1
--- /dev/null
+++ b/test/windows_h.cxx
@@ -0,0 +1,31 @@
+#include "windows.h"
+#include <iostream>
+#include <args.hxx>
+
+int main()
+{
+ args::ArgumentParser parser("This is a test program.", "This goes after the options.");
+ args::HelpFlag help(parser, "help", "Display this help menu", {'h', "help"});
+ args::CompletionFlag completion(parser, {"complete"});
+ try
+ {
+ parser.ParseCLI(argc, argv);
+ }
+ catch (args::Completion& e)
+ {
+ std::cout << e.what();
+ return 0;
+ }
+ catch (args::Help&)
+ {
+ std::cout << parser;
+ return 0;
+ }
+ catch (args::ParseError& e)
+ {
+ std::cerr << e.what() << std::endl;
+ std::cerr << parser;
+ return 1;
+ }
+ return 0;
+}