]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
Added example conf
[user/henk/code/inspircd.git] / include / ctables.h
index 65b469948e32d1d2669d9e29ae02c61ed62f633f..7fca885bcb90cd5897bf917865e828f939e09b9f 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
 #define __CTABLES_H__
 
 #include "inspircd_config.h"
-#include <deque>
+
+#ifdef GCC3
+#include <ext/hash_map>
+#else
+#include <hash_map>
+#endif
+
+#ifdef GCC3
+#define nspace __gnu_cxx
+#else
+#define nspace std
+#endif
 
 class userrec;
 
@@ -59,7 +70,7 @@ class command_t
        virtual ~command_t() {}
 };
 
-typedef std::deque<command_t*> command_table;
+typedef nspace::hash_map<std::string,command_t*> command_table;
 
 #endif