- Timestamp:
- Jan 17, 2016, 10:29:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/command/ConsoleCommandManager.h
r10624 r11071 39 39 #include "util/Singleton.h" 40 40 41 #include <map> 42 41 43 namespace orxonox 42 44 { … … 54 56 55 57 /// Returns the map with all groups and commands. 56 inline const std::map<std::string, std::map<std::string, ConsoleCommand*> 58 inline const std::map<std::string, std::map<std::string, ConsoleCommand*>>& getCommands() 57 59 { return this->commandMap_; } 58 60 /// Returns the map with all groups and commands in lowercase. 59 inline const std::map<std::string, std::map<std::string, ConsoleCommand*> 61 inline const std::map<std::string, std::map<std::string, ConsoleCommand*>>& getCommandsLC() 60 62 { return this->commandMapLC_; } 61 63 … … 71 73 72 74 private: 73 std::map<std::string, std::map<std::string, ConsoleCommand*> 74 std::map<std::string, std::map<std::string, ConsoleCommand*> 75 std::map<std::string, std::map<std::string, ConsoleCommand*>> commandMap_; 76 std::map<std::string, std::map<std::string, ConsoleCommand*>> commandMapLC_; 75 77 76 78 static ConsoleCommandManager* singletonPtr_s;
Note: See TracChangeset
for help on using the changeset viewer.