Changeset 5691 in orxonox.OLD for trunk/src/lib/util
- Timestamp:
- Nov 22, 2005, 12:21:45 AM (19 years ago)
- Location:
- trunk/src/lib/util/executor
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
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.