The InspIRCd Project
Home | Developers | Wiki | Forums | Bug Tracker | SVN | Download
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

globals.h

Go to the documentation of this file.
00001 /*       +------------------------------------+
00002  *       | Inspire Internet Relay Chat Daemon |
00003  *       +------------------------------------+
00004  *
00005  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
00006  * See: http://www.inspircd.org/wiki/index.php/Credits
00007  *
00008  * This program is free but copyrighted software; see
00009  *            the file COPYING for details.
00010  *
00011  * ---------------------------------------------------
00012  */
00013 
00014 #ifndef __WORLD_H
00015 #define __WORLD_H
00016 
00017 #include <vector>
00018 #include <deque>
00019 #include <map>
00020 
00023 typedef std::deque< std::string > file_cache;
00024 
00027 typedef std::pair< std::string, std::string > KeyVal;
00028 
00031 typedef std::vector< KeyVal > KeyValList;
00032 
00035 typedef std::multimap< std::string, KeyValList > ConfigDataHash;
00036 
00037 #endif