Changeset 8271 in orxonox.OLD for trunk/src/lib/util/executor/executor_functional.h
- Timestamp:
- Jun 8, 2006, 4:50:50 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor_functional.h
r8048 r8271 123 123 124 124 /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */ 125 virtual void operator()(BaseObject* object, unsigned intcount, void* values) const125 virtual void operator()(BaseObject* object, int& count, void* values) const 126 126 { 127 127 (__EXECUTOR_FUNCTIONAL_FUNCTION_EXEC)(); … … 163 163 164 164 /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */ 165 virtual void operator()(BaseObject* object, unsigned intcount, void* values) const165 virtual void operator()(BaseObject* object, int& count, void* values) const 166 166 { 167 167 const MultiType* mt = (const MultiType*)values; … … 227 227 228 228 /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */ 229 virtual void operator()(BaseObject* object, unsigned intcount, void* values) const229 virtual void operator()(BaseObject* object, int& count, void* values) const 230 230 { 231 231 const MultiType* mt = (const MultiType*)values; … … 282 282 283 283 /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */ 284 virtual void operator()(BaseObject* object, unsigned intcount, void* values) const284 virtual void operator()(BaseObject* object, int& count, void* values) const 285 285 { 286 286 const MultiType* mt = (const MultiType*)values; … … 340 340 341 341 /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */ 342 virtual void operator()(BaseObject* object, unsigned intcount, void* values) const342 virtual void operator()(BaseObject* object, int& count, void* values) const 343 343 { 344 344 const MultiType* mt = (const MultiType*)values; … … 400 400 401 401 /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */ 402 virtual void operator()(BaseObject* object, unsigned intcount, void* values) const402 virtual void operator()(BaseObject* object, int& count, void* values) const 403 403 { 404 404 const MultiType* mt = (const MultiType*)values;
Note: See TracChangeset
for help on using the changeset viewer.