Changeset 7203 in orxonox.OLD for branches/std/src/lib/util/executor/executor.h
- Timestamp:
- Mar 9, 2006, 5:28:10 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/std/src/lib/util/executor/executor.h
r7200 r7203 87 87 #define l_FLOAT_DEFGRAB(i) this->defaultValue[i].getFloat() 88 88 //! where to chek for default STRING values 89 #define l_STRING_DEFGRAB(i) this->defaultValue[i].getString() 90 //! where to chek for default CSTRING values 89 91 #define l_CSTRING_DEFGRAB(i) this->defaultValue[i].getCString() 90 92 … … 268 270 virtual void execute (BaseObject* object, const void* parameters = NULL) 269 271 { 270 SubString sub(( const char*) parameters, " \n\t,", '\\');271 printf("%s :: %s\n", this->getName(), ( const char*) parameters);272 SubString sub(((const std::string*) parameters)->c_str(), " \n\t,", '\\'); 273 printf("%s :: %s\n", this->getName(), ((const std::string*) parameters)->c_str()); 272 274 //! FUNCTOR_LIST is the List of Executive Functions 273 275 #define FUNCTOR_LIST(x) ExecutorExecute ## x
Note: See TracChangeset
for help on using the changeset viewer.