]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/hash_map.h
The rest of the server protocol interface and fix a warning in m_rline
[user/henk/code/inspircd.git] / include / hash_map.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13  
14 #ifndef INSPIRCD_HASHMAP_H
15 #define INSPIRCD_HASHMAP_H
16
17 /** Where hash_map is varies from compiler to compiler
18  * as it is not standard.
19  */
20 #ifndef WIN32
21 #include <ext/hash_map>
22 /** Oddball linux namespace for hash_map */
23 #define nspace __gnu_cxx
24 #else
25 #include <hash_map>
26 #define nspace stdext
27 /** Oddball windows namespace for hash_map */
28 using stdext::hash_map;
29 #endif
30
31 #endif