]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/globals.h
And fix typo
[user/henk/code/inspircd.git] / include / globals.h
index 9950db422e3b050c0cc90b51ce1efdafbbea6cc8..fce5fc043d8562a2fd0f9478fb0fa0255d47401e 100644 (file)
 #ifndef __WORLD_H
 #define __WORLD_H
 
-// include the common header files
-
-#include <typeinfo>
-#include <iostream>
 #include <string>
 #include <deque>
-#include "users.h"
-#include "channels.h"
+#include <map>
+#include <vector>
 
 typedef std::deque<std::string> file_cache;
 typedef std::pair< std::string, std::string > KeyVal;
 typedef std::vector< KeyVal > KeyValList;
 typedef std::multimap< std::string, KeyValList > ConfigDataHash;
 
-void WriteOpers(char* text, ...);
-int isnick(const char *n);
-chanrec* FindChan(const char* chan);
-
 #endif