Fixed Option parameter. Added new example.
[command.git] / include / command.h
index f53227ea4a994d32e7b3c645b009def1f169b22f..9cf0a9fc5bba15fb9b229309df13c603d75cb385 100644 (file)
@@ -27,7 +27,6 @@ namespace command {
         Command(unsigned int argc, char *argv[], std::initializer_list<Parameter *> params)
             : args(params) {
             for(Parameter *param : params) {
-                std::cout << "Command foreach" << std::endl;
                 param->handle();
             }
         }