Changeset 8048 in orxonox.OLD for trunk/src/lib/util/executor/executor.h
- Timestamp:
- May 31, 2006, 11:10:17 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor.h
r8035 r8048 53 53 // EXECUTE 54 54 /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */ 55 virtual void operator()(BaseObject* object, unsigned int count, const MultiType* values) const = 0;55 virtual void operator()(BaseObject* object, unsigned int count, void* values) const = 0; 56 56 /** executes a Command @param object the object to apply this to @param parameters the parameters the command takes */ 57 57 virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const = 0; 58 /** executes a Command @param object the object to apply this to @param parameters the parameters the command takes @brief here for your convenience*/59 void execute (BaseObject* object, const std::string& parameters = "") const { (*this)(object, parameters); };60 61 58 62 59 // RETRIEVE INFORMATION
Note: See TracChangeset
for help on using the changeset viewer.