diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/globals.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/globals.h b/include/globals.h index 01a8b48e0..2de2ba11b 100644 --- a/include/globals.h +++ b/include/globals.h @@ -14,9 +14,13 @@ #ifndef __WORLD_H #define __WORLD_H +#include <vector> +#include <deque> +#include <map> + /** A cached text file stored with its contents as lines */ -typedef std::deque<std::string> file_cache; +typedef std::deque< std::string > file_cache; /** A configuration key and value pair */ |