#ifndef __TYPEDEF_H__ #define __TYPEDEF_H__ #include "users.h" #include "channels.h" #include "hashcomp.h" #include "inspstring.h" #include "ctables.h" #include "inspircd.h" #include "modules.h" #include "globals.h" #include "inspircd_config.h" #include #ifdef GCC3 #include #else #include #endif typedef nspace::hash_map, irc::StrHashComp> user_hash; typedef nspace::hash_map, irc::StrHashComp> chan_hash; typedef nspace::hash_map, irc::InAddr_HashComp> address_cache; typedef nspace::hash_map, irc::StrHashComp> whowas_hash; typedef std::vector servernamelist; typedef std::vector ExtModeList; typedef ExtModeList::iterator ExtModeListIter; typedef std::deque file_cache; #endif