]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/typedefs.h
Remove needless headers from typedefs.h
[user/henk/code/inspircd.git] / include / typedefs.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 __TYPEDEF_H__
15 #define __TYPEDEF_H__
16
17 #include <string>
18 #include "inspircd_config.h"
19 #include "hash_map.h"
20 #include "hashcomp.h"
21
22 class User;
23 class Channel;
24
25 #ifndef WIN32
26 /** User hash (POSIX systems with GCC)
27  */
28 typedef nspace::hash_map<std::string, User*, nspace::hash<string>, irc::StrHashComp> user_hash;
29 /** Channel hash (POSIX systems with GCC)
30  */
31 typedef nspace::hash_map<std::string, Channel*, nspace::hash<string>, irc::StrHashComp> chan_hash;
32 #else
33 /** User hash (windows systems with visual studio)
34  */
35 typedef nspace::hash_map<std::string, User*, nspace::hash_compare<string, less<string> > > user_hash;
36 /** Channel hash (windows systems with visual studio)
37  */
38 typedef nspace::hash_map<std::string, Channel*, nspace::hash_compare<string, less<string> > > chan_hash;
39 #endif
40
41 /** Server name cache
42  */
43 typedef std::vector<std::string*> servernamelist;
44
45 /** A cached text file stored line by line.
46  */
47 typedef std::deque<std::string> file_cache;
48
49 #endif
50