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 File Reference

#include <vector>
#include <deque>
#include <map>

Include dependency graph for globals.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef std::deque< std::stringfile_cache
 A cached text file stored with its contents as lines.
typedef std::pair< std::string,
std::string
KeyVal
 A configuration key and value pair.
typedef std::vector< KeyValKeyValList
 A list of related configuration keys and values.
typedef std::multimap< std::string,
KeyValList
ConfigDataHash
 An entire config file, built up of KeyValLists.


Typedef Documentation

typedef std::multimap< std::string, KeyValList > ConfigDataHash
 

An entire config file, built up of KeyValLists.

Definition at line 35 of file globals.h.

typedef std::deque< std::string > file_cache
 

A cached text file stored with its contents as lines.

Definition at line 23 of file globals.h.

typedef std::pair< std::string, std::string > KeyVal
 

A configuration key and value pair.

Definition at line 27 of file globals.h.

typedef std::vector< KeyVal > KeyValList
 

A list of related configuration keys and values.

Definition at line 31 of file globals.h.