]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/globals.h
Fix double printing of 'setting log file' and 'setting config file' paths.
[user/henk/code/inspircd.git] / include / globals.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 __WORLD_H
15 #define __WORLD_H
16
17 #include <string>
18 #include <deque>
19 #include <map>
20 #include <vector>
21
22 typedef std::deque<std::string> file_cache;
23 typedef std::pair< std::string, std::string > KeyVal;
24 typedef std::vector< KeyVal > KeyValList;
25 typedef std::multimap< std::string, KeyValList > ConfigDataHash;
26
27 #endif