Changeset 5636 in orxonox.OLD for trunk/src/lib/util/executor/executor.cc
- Timestamp:
- Nov 18, 2005, 6:55:18 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor.cc
r5635 r5636 38 38 * @param paramCount the count of parameters this command takes 39 39 */ 40 Executor::Executor( const char* commandName, const char* className,unsigned int paramCount, ...)40 Executor::Executor(unsigned int paramCount, ...) 41 41 { 42 42 this->setClassID(CL_EXECUTOR, "Executor"); 43 this->setName(commandName);44 43 45 // this->classID = classID;46 // handling parameters, and storing them:47 44 if (paramCount > FUNCTOR_MAX_ARGUMENTS) 48 45 paramCount = FUNCTOR_MAX_ARGUMENTS;
Note: See TracChangeset
for help on using the changeset viewer.