Changeset 5691 in orxonox.OLD for trunk/src/lib
- Timestamp:
- Nov 22, 2005, 12:21:45 AM (19 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/Makefile.am
r5674 r5691 60 60 util/multi_type.h \ 61 61 util/executor/executor.h \ 62 util/executor/executor_specials.h \ 63 util/executor/functor_list.h \ 62 64 math/matrix.h \ 63 65 math/vector.h \ -
trunk/src/lib/Makefile.in
r5674 r5691 250 250 util/multi_type.h \ 251 251 util/executor/executor.h \ 252 util/executor/executor_specials.h \ 253 util/executor/functor_list.h \ 252 254 math/matrix.h \ 253 255 math/vector.h \ -
trunk/src/lib/util/executor/executor.h
r5690 r5691 42 42 43 43 /** executes a Command @param object the object to apply this to @param parameters the parameters the command takes */ 44 virtual void execute (BaseObject* object, const void* parameters ) = 0;44 virtual void execute (BaseObject* object, const void* parameters = NULL) = 0; 45 45 46 46 /** @returns the Type of this Function (either static or objective) */ … … 261 261 } fp; 262 262 263 virtual void execute (BaseObject* object, const void* parameters )263 virtual void execute (BaseObject* object, const void* parameters = NULL) 264 264 { 265 265 SubString sub((const char*) parameters, " \n\t,", '\\'); … … 323 323 324 324 325 virtual void execute (BaseObject* object, const void* parameters )325 virtual void execute (BaseObject* object, const void* parameters = NULL) 326 326 { 327 327 SubString sub((const char*)parameters, " \n\t,"); -
trunk/src/lib/util/executor/executor_specials.h
r5690 r5691 59 59 * @param loadString ignored in this case 60 60 */ 61 virtual void execute(BaseObject* object, const void* loadString)61 virtual void execute(BaseObject* object, const void* parameters = NULL) 62 62 { 63 63 if (object != NULL && this->element != NULL)
Note: See TracChangeset
for help on using the changeset viewer.