Changeset 7252 in orxonox.OLD for branches/resources/src/lib/shell
- Timestamp:
- Mar 27, 2006, 11:12:18 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/resources/src/lib/shell/shell_command.h
r7229 r7252 83 83 84 84 protected: 85 MultiType * defaultValue;//!< Default Values.85 MultiType defaultValue[5]; //!< Default Values. 86 86 87 87 private: 88 ShellCommandClass* shellClass; 89 ShellCommandAlias* alias; 88 ShellCommandClass* shellClass; //!< A Pointer to the Shell-Class this Command belongs to. 89 ShellCommandAlias* alias; //!< An Alias for the Class. 90 90 91 std::string description; 92 Executor* executor; 91 std::string description; //!< A description for this commnand. (initially NULL). Assigned with (create)->describe("blablabla"); 92 Executor* executor; //!< The Executor, that really executes the Function. 93 93 94 94 };
Note: See TracChangeset
for help on using the changeset viewer.