Added Argument boolean tests.
[command.git] / src / main.cpp
index 37ca36f9d6cabd4ceb67bf239b8a6a9f3c0149d8..813491aae3442b231841f2490d4faecae04200c4 100644 (file)
@@ -1,10 +1,19 @@
+#include <iostream>
+#include <string>
 
-int main() {
+#include "option.h"
+#include "argument.h"
+#include "command.h"
+
+void some_function(bool a) {
+    std::cout << "Some function " << a << std::endl;
+}
+
+int main(int argc, char *argv[]) {
     command::Command command(argc, argv, {
-        command::Option<std::string>("f", "File path", [](std::string value)->void { cout << "Sth: " << value << endl; }),
-        command::Argument<std::string>("File path", []()->void { cout << "Sth: " << value << endl; }),
-        command::Option<void>("help", "Help description", [](void)->void { cout << "Sth: " << value << endl; }),
-        command::Option<void>("verbose", "Verbose option description", &myClass->verbose)
+//         new command::Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; }),
+        new command::Argument<bool>("File path", some_function)/*,
+        new command::Option<std::string>("h", "Help", some_function)*/
     });
 
     return 0;