X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FConsole%2FParsedCommand.ih;h=3fbb1b5e8a33088b61166fb602a5c133ccc12fcf;hb=3a0e403d889f8a16d78d50bbcd7a0f0157b05313;hp=5ee1a84d0559b2207d3dfdde30ec24e3615a3544;hpb=f13780e9e4da7df981d6f6542fbdc714beb34765;p=senf.git diff --git a/senf/Utils/Console/ParsedCommand.ih b/senf/Utils/Console/ParsedCommand.ih index 5ee1a84..3fbb1b5 100644 --- a/senf/Utils/Console/ParsedCommand.ih +++ b/senf/Utils/Console/ParsedCommand.ih @@ -116,6 +116,7 @@ namespace detail { { static const bool is_callable = false; static const bool is_member = false; + static const bool is_simple = false; }; template @@ -138,6 +139,7 @@ namespace detail { static const bool is_callable = true; static const bool is_member = boost::is_member_pointer::value; + static const bool is_simple = false; typedef typename senf::member_class::type class_type; @@ -148,7 +150,9 @@ namespace detail { // Disable auto-parsing for ParseCommandInfo arg -> register manually parsed command template struct ParsedCommandTraits_i - {}; + { + static const bool is_simple = true; + }; template struct ParsedCommandTraits