Changeset 9878 in orxonox.OLD for trunk/src/lib/shell
- Timestamp:
- Oct 3, 2006, 3:49:52 PM (18 years ago)
- Location:
- trunk/src/lib/shell
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_command.cc
r9869 r9878 39 39 ShellCommand::ShellCommand(const std::string& commandName, const std::string& className, Executor<const SubString>* executor) 40 40 { 41 this->registerObject(this, ShellCommand::_objectList);41 // this->registerObject(this, ShellCommand::_objectList); 42 42 PRINTF(4)("create shellcommand '%s' for class '%s'\n", commandName.c_str(), className.c_str()); 43 43 this->setName(commandName); -
trunk/src/lib/shell/shell_command_class.cc
r9869 r9878 38 38 : _className(className) 39 39 { 40 this->registerObject(this, ShellCommandClass::_objectList);40 // this->registerObject(this, ShellCommandClass::_objectList); 41 41 this->setName(className); 42 42
Note: See TracChangeset
for help on using the changeset viewer.