Possibility to handle class method & example
[command.git] / include / argument.h
index 2cd3c300f970a8d2e205de7685a6f10fd9ad241d..bf5fc3354f304c7b894252069969451275ec7fff 100644 (file)
@@ -32,10 +32,6 @@ namespace command {
          * @param description Description of current Argument
          * @param function Function used to handle current Argument.
          */
-        Argument(const std::string & description, void (*function)(ParameterType))
-            : Parameter(description), Callable<ParameterType>(function) {
-        }
-
         Argument(const std::string & description, std::function<void(ParameterType)> function)
             : Parameter(description), Callable<ParameterType>(function) {
         }