- Timestamp:
- Aug 26, 2010, 2:06:16 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/command/CommandEvaluation.h
r7203 r7221 72 72 void evaluateParams(); 73 73 74 bool isValid() const; 74 bool isValid() const 75 { return this->function_; } 75 76 76 inline ConsoleCommand* getConsoleCommand() const77 inline _ConsoleCommand* getConsoleCommand() const 77 78 { return this->function_; } 78 79 inline const std::string& getOriginalCommand() const … … 93 94 static std::string dump(const std::list<std::pair<const std::string*, const std::string*> >& list); 94 95 static std::string dump(const ArgumentCompletionList& list); 95 static std::string dump(const ConsoleCommand* command);96 static std::string dump(const _ConsoleCommand* command); 96 97 97 98 … … 109 110 110 111 Identifier* functionclass_; 111 ConsoleCommand* function_;112 _ConsoleCommand* function_; 112 113 std::string possibleArgument_; 113 114 std::string argument_;
Note: See TracChangeset
for help on using the changeset viewer.