Changeset 1441 for code/branches/console/src/core/ConsoleCommand.h
- Timestamp:
- May 27, 2008, 6:29:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/ConsoleCommand.h
r1434 r1441 34 34 #include "Executor.h" 35 35 #include "ClassManager.h" 36 #include "Identifier.h"37 36 #include "CommandExecutor.h" 38 37 #include "ArgumentCompletionFunctions.h" … … 104 103 105 104 void createArgumentCompletionList(unsigned int param, const std::string& param1 = "", const std::string& param2 = "", const std::string& param3 = "", const std::string& param4 = "", const std::string& param5 = ""); 106 const std::list<std::pair<std::string, std::string> >& getArgumentCompletionList() const105 const ArgumentCompletionList& getArgumentCompletionList() const 107 106 { return this->argumentList_; } 108 std::list<std::pair<std::string, std::string> >::const_iterator getArgumentCompletionListBegin() const107 ArgumentCompletionList::const_iterator getArgumentCompletionListBegin() const 109 108 { return this->argumentList_.begin(); } 110 std::list<std::pair<std::string, std::string> >::const_iterator getArgumentCompletionListEnd() const109 ArgumentCompletionList::const_iterator getArgumentCompletionListEnd() const 111 110 { return this->argumentList_.end(); } 112 111 … … 114 113 AccessLevel::Level accessLevel_; 115 114 ArgumentCompleter* argumentCompleter_[5]; 116 std::list<std::pair<std::string, std::string> >argumentList_;115 ArgumentCompletionList argumentList_; 117 116 }; 118 117
Note: See TracChangeset
for help on using the changeset viewer.