diff options
author | fez <fez@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-05 02:42:01 +0000 |
---|---|---|
committer | fez <fez@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-05 02:42:01 +0000 |
commit | 41c5854a19cb686628c32a088653e33918782527 (patch) | |
tree | f94c20a00addb9b5b7fad0e0bb7f3cb62e76e690 /include/globals.h | |
parent | 532d9de8c5dc2fe059c591109ce4ce6a3e813bb8 (diff) |
fixed w00t's brain (I mean std:: stuff)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8826 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/globals.h')
-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 */ |