globals.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
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