Update example.
[command.git] / src / main.cpp
index 5cf4e83d018373e5e665bafaee685ee2989e7bff..06fbf1e14bd7befddfa64ccff38b62e5402edc19 100644 (file)
@@ -4,6 +4,7 @@
 #include "option.h"
 #include "argument.h"
 #include "required.h"
+#include "multiValue.h"
 #include "command.h"
 
 using namespace command;
@@ -21,12 +22,18 @@ void void_function(void) {
 }
 
 int main(int argc, char *argv[]) {
-    Command command(argc, argv, {
-//         new Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; }),
-        new Required(new Argument<bool>("File path", argument_function)),
-        new Option<std::string>("f", "Optional file", option_function),
-        new Option<void>("h", "Help", void_function)
-    });
+    try {
+        Command command(argc, argv, {
+//             new Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; }),
+            new Required(new MultiValue("-", new Argument<bool>("Input values", argument_function))),
+            new MultiValue(",", new Option<std::string>("f", "Optional file", option_function)),
+            new Option<void>("h", "Help", void_function)
+        });
+
+    }
+    catch(const std::exception & e) {
+        std::cout << e.what() << std::endl;
+    }
 
     return 0;
 }
\ No newline at end of file