Possibility to pass class method reference
[command.git] / tests / option / handles_string_value.cpp
index 4b276ec6844235fb7bb742ff85f565a19f56eb46..c318351b6bbec00eadf717f4df736d6872612548 100644 (file)
@@ -9,18 +9,18 @@ using namespace command;
 #define NAME "test"
 #define VALUE "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
 
-#define OPTION NAME"="VALUE
+#define OPTION NAME "=" VALUE
 
 typedef std::string OptionType;
 
 OptionType test;
 
-void function(OptionType value) {
+void _function(OptionType value) {
     test = value;
 }
 
 int main() {
-    Option<OptionType> option(NAME, "Option with string value", function);
+    Option<OptionType> option(NAME, "Option with string value", _function);
 
     if (option.understand(OPTION)) {
         option.handle();