2007-07-16 17:30:04 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2008-01-10 13:27:07 +00:00
|
|
|
* InspIRCd: (C) 2002-2008 InspIRCd Development Team
|
2007-07-16 17:30:04 +00:00
|
|
|
* See: http://www.inspircd.org/wiki/index.php/Credits
|
|
|
|
*
|
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WORLD_H
|
|
|
|
#define __WORLD_H
|
|
|
|
|
2008-02-05 02:42:01 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <deque>
|
|
|
|
#include <map>
|
|
|
|
|
2007-07-16 17:30:04 +00:00
|
|
|
/** A cached text file stored with its contents as lines
|
|
|
|
*/
|
2008-02-05 02:42:01 +00:00
|
|
|
typedef std::deque< std::string > file_cache;
|
2007-07-16 17:30:04 +00:00
|
|
|
|
|
|
|
/** A configuration key and value pair
|
|
|
|
*/
|
|
|
|
typedef std::pair< std::string, std::string > KeyVal;
|
|
|
|
|
|
|
|
/** A list of related configuration keys and values
|
|
|
|
*/
|
|
|
|
typedef std::vector< KeyVal > KeyValList;
|
|
|
|
|
|
|
|
/** An entire config file, built up of KeyValLists
|
|
|
|
*/
|
|
|
|
typedef std::multimap< std::string, KeyValList > ConfigDataHash;
|
|
|
|
|
|
|
|
#endif
|