Changeset 7252 in orxonox.OLD for branches/resources/src/lib
- Timestamp:
- Mar 27, 2006, 11:12:18 PM (19 years ago)
- Location:
- branches/resources/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/resources/src/lib/BuildLibs.am
r7240 r7252 2 2 libORXlibs_a_LIBRARIES_ = \ 3 3 $(LIB_PREFIX)/libORXlibs.a \ 4 $(LIB_PREFIX)/util/libORXlibutil.a \ 4 5 $(LIB_PREFIX)/gui/gtk_gui/libORXgui.a \ 5 6 $(LIB_PREFIX)/gui/gl_gui/libORXglgui.a \ -
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.