Added Argument boolean tests.
[command.git] / src / main.cpp
index 80aeb274803d70e63d9a90b7b056586a2c9bd847..813491aae3442b231841f2490d4faecae04200c4 100644 (file)
@@ -5,14 +5,15 @@
 #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, {
-        new command::Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; }),
-        new command::Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; }),
-        new command::Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; }),
-        new command::Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; }),
-        new command::Argument<std::string>("File path", [](std::string value)->void { std::cout << "Hello from lambda " << value << std::endl; })
+//         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;