]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
Add SocketEngine::WriteV()
[user/henk/code/inspircd.git] / include / command_parse.h
index 2abbdb6076cf0f0f5b07b15d2168b6d4a4a4ddf7..0f39d35860f3ec7415372fadb7eb5bfd2e625882 100644 (file)
@@ -30,7 +30,7 @@
 class CoreExport CommandParser
 {
  public:
-       typedef Commandtable CommandMap;
+       typedef TR1NS::unordered_map<std::string, Command*> CommandMap;
 
  private:
        /** Process a command from a user.
@@ -41,7 +41,7 @@ class CoreExport CommandParser
 
        /** Command list, a hash_map of command names to Command*
         */
-       Commandtable cmdlist;
+       CommandMap cmdlist;
 
  public:
        /** Default constructor.