Changeset 5642 in orxonox.OLD for trunk/src/lib/util/executor
- Timestamp:
- Nov 19, 2005, 12:16:12 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor.h
r5641 r5642 44 44 /** @returns the Type of this Function (either static or objective) */ 45 45 inline Executor_Type getType() const { return this->functorType; }; 46 /** @returns the Count of Parameters this Executor takes */ 47 inline unsigned int getParamCount() const { return this->paramCount; }; 46 48 47 49 static void debug(); … … 54 56 55 57 protected: 56 Executor_Type functorType; 57 unsigned int paramCount; 58 MultiType* defaultValue; 58 Executor_Type functorType; //!< The type of Function we've got (either static or objective). 59 unsigned int paramCount; //!< the count of parameters. 60 MultiType* defaultValue; //!< Default Values. 59 61 }; 60 62
Note: See TracChangeset
for help on using the changeset viewer.