2004-05-16 14:58:40 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2006-01-15 15:59:11 +00:00
|
|
|
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
|
2004-05-16 14:58:40 +00:00
|
|
|
* E-mail:
|
|
|
|
* <brain@chatspike.net>
|
2006-07-10 18:22:16 +00:00
|
|
|
* <Craig@chatspike.net>
|
2004-05-16 14:58:40 +00:00
|
|
|
*
|
|
|
|
* Written by Craig Edwards, Craig McLure, and others.
|
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
2003-01-23 19:45:57 +00:00
|
|
|
|
|
|
|
#ifndef __WORLD_H
|
|
|
|
#define __WORLD_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <deque>
|
2006-08-19 00:23:15 +00:00
|
|
|
#include <map>
|
2006-08-19 00:31:18 +00:00
|
|
|
#include <vector>
|
2003-01-23 19:45:57 +00:00
|
|
|
|
2003-07-22 21:56:38 +00:00
|
|
|
typedef std::deque<std::string> file_cache;
|
2006-04-04 05:55:54 +00:00
|
|
|
typedef std::pair< std::string, std::string > KeyVal;
|
|
|
|
typedef std::vector< KeyVal > KeyValList;
|
|
|
|
typedef std::multimap< std::string, KeyValList > ConfigDataHash;
|
2003-01-23 19:45:57 +00:00
|
|
|
|
|
|
|
#endif
|