Changeset 1424 for code/branches/console/src/core/CommandEvaluation.h
- Timestamp:
- May 25, 2008, 9:58:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/CommandEvaluation.h
r1417 r1424 45 45 CS_Empty, 46 46 CS_ShortcutOrIdentifier, 47 CS_Shortcut_Params,48 CS_Shortcut_Finished,49 47 CS_Function, 50 CS_ Function_Params,51 CS_F unction_Finished,48 CS_Params, 49 CS_Finished, 52 50 CS_Error 53 51 }; … … 63 61 64 62 bool execute() const; 65 std::string complete() const;63 std::string complete(); 66 64 std::string hint() const; 67 65 void evaluateParams(); … … 82 80 private: 83 81 unsigned int getStartindex() const; 84 static std::string getCommonBegin(const std::list<std::pair<const std::string*, const std::string*> >& list);85 82 static std::string dump(const std::list<std::pair<const std::string*, const std::string*> >& list); 86 83 static std::string dump(const ConsoleCommand* command); … … 88 85 89 86 bool bNewCommand_; 87 bool bCommandChanged_; 90 88 91 89 std::string originalCommand_;
Note: See TracChangeset
for help on using the changeset viewer.