Changeset 7743 in orxonox.OLD for trunk/src/lib/shell/shell_command_class.h
- Timestamp:
- May 20, 2006, 4:03:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_command_class.h
r7742 r7743 27 27 public: 28 28 /** @returns the CommandClassList */ 29 static const CmdClassList& getCommandClassList() { return ShellCommandClass::commandClassList; };29 static const CmdClassList& getCommandClassList() { return *ShellCommandClass::commandClassList; }; 30 30 31 31 static bool getCommandListOfClass(const std::string& className, std::list<std::string>& stringList); … … 54 54 CmdList commandList; //!< A list of Commands from this Class 55 55 56 static CmdClassList 56 static CmdClassList* commandClassList; //!< A list of Classes 57 57 }; 58 59 58 } 60 59
Note: See TracChangeset
for help on using the changeset viewer.