]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/hash_map.h
- Fixed UDP Overlapped I/O under windows. (not the best way this could be done by...
[user/henk/code/inspircd.git] / include / hash_map.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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 #include "inspircd_config.h"
18
19 #ifndef WIN32
20 #include <ext/hash_map>
21 #define nspace __gnu_cxx
22 #else
23 #include <hash_map>
24 #define nspace stdext
25 using stdext::hash_map;
26 #endif
27
28 #endif