- Timestamp:
- Nov 7, 2015, 10:23:42 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/command/ConsoleCommandManager.h
r10624 r10769 54 54 55 55 /// Returns the map with all groups and commands. 56 inline const std::map<std::string, std::map<std::string, ConsoleCommand*> 56 inline const std::map<std::string, std::map<std::string, ConsoleCommand*>>& getCommands() 57 57 { return this->commandMap_; } 58 58 /// Returns the map with all groups and commands in lowercase. 59 inline const std::map<std::string, std::map<std::string, ConsoleCommand*> 59 inline const std::map<std::string, std::map<std::string, ConsoleCommand*>>& getCommandsLC() 60 60 { return this->commandMapLC_; } 61 61 … … 71 71 72 72 private: 73 std::map<std::string, std::map<std::string, ConsoleCommand*> 74 std::map<std::string, std::map<std::string, ConsoleCommand*> 73 std::map<std::string, std::map<std::string, ConsoleCommand*>> commandMap_; 74 std::map<std::string, std::map<std::string, ConsoleCommand*>> commandMapLC_; 75 75 76 76 static ConsoleCommandManager* singletonPtr_s;
Note: See TracChangeset
for help on using the changeset viewer.