]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/globals.h
Move lowermap[] into a pre-initialised const array in hashcomp.h,
[user/henk/code/inspircd.git] / include / globals.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __WORLD_H
18 #define __WORLD_H
19
20 // include the common header files
21
22 #include <string>
23 #include <deque>
24 #include "users.h"
25
26 typedef std::deque<std::string> file_cache;
27 typedef std::pair< std::string, std::string > KeyVal;
28 typedef std::vector< KeyVal > KeyValList;
29 typedef std::multimap< std::string, KeyValList > ConfigDataHash;
30
31 #endif