Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 14, 2006, 10:31:40 PM (18 years ago)
Author:
bensch
Message:

cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/util/executor/executor_functional.cc

    r8894 r9728  
    1414*/
    1515
    16 #include "executor.h"
     16#include "executor_functional.h"
    1717std::string ExecutorFunctional_returningString_from[7];
    1818
    19 
    20 template<> MT_Type ExecutorParamType<bool>() { return MT_BOOL; };
    21 template<> MT_Type ExecutorParamType<int>() { return MT_INT; };
    22 template<> MT_Type ExecutorParamType<unsigned int>() { return MT_UINT; };
    23 template<> MT_Type ExecutorParamType<float>() { return MT_FLOAT; };
    24 template<> MT_Type ExecutorParamType<char>() { return MT_CHAR; };
    25 template<> MT_Type ExecutorParamType<const std::string&>() { return MT_STRING; };
    2619
    2720template<> bool fromString<bool>(const std::string& input, bool defaultValue) { return isBool(input, defaultValue); };
Note: See TracChangeset for help on using the changeset viewer.