]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/typedefs.h
OOPS! We try again, since I'm smoking craq. LF is 0x0a NOT CR.
[user/henk/code/inspircd.git] / include / typedefs.h
index 0c9ee3ed1c0e4abb0c370f2acbdce11d3ba9d356..f101e161557a388edb3ab8aaba4a9cc54bdc974e 100644 (file)
@@ -1 +1,53 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#ifndef __TYPEDEF_H__\r#define __TYPEDEF_H__\r\r#include <string>\r#include "inspircd_config.h"\r#include "hash_map.h"\r#include "users.h"\r#include "channels.h"\r#include "hashcomp.h"\r#include "inspstring.h"\r#include "ctables.h"\r#include "modules.h"\r#include "globals.h"\r\r#ifndef WIN32\r/** User hash (POSIX systems with GCC)\r */\rtypedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;\r/** Channel hash (POSIX systems with GCC)\r */\rtypedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;\r#else\r/** User hash (windows systems with visual studio)\r */\rtypedef nspace::hash_map<std::string, userrec*, nspace::hash_compare<string, less<string> > > user_hash;\r/** Channel hash (windows systems with visual studio)\r */\rtypedef nspace::hash_map<std::string, chanrec*, nspace::hash_compare<string, less<string> > > chan_hash;\r#endif\r\r/** Server name cache\r */\rtypedef std::vector<std::string*> servernamelist;\r\r/** A cached text file stored line by line.\r */\rtypedef std::deque<std::string> file_cache;\r\r#endif\r\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#ifndef __TYPEDEF_H__
+#define __TYPEDEF_H__
+
+#include <string>
+#include "inspircd_config.h"
+#include "hash_map.h"
+#include "users.h"
+#include "channels.h"
+#include "hashcomp.h"
+#include "inspstring.h"
+#include "ctables.h"
+#include "modules.h"
+#include "globals.h"
+
+#ifndef WIN32
+/** User hash (POSIX systems with GCC)
+ */
+typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;
+/** Channel hash (POSIX systems with GCC)
+ */
+typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;
+#else
+/** User hash (windows systems with visual studio)
+ */
+typedef nspace::hash_map<std::string, userrec*, nspace::hash_compare<string, less<string> > > user_hash;
+/** Channel hash (windows systems with visual studio)
+ */
+typedef nspace::hash_map<std::string, chanrec*, nspace::hash_compare<string, less<string> > > chan_hash;
+#endif
+
+/** Server name cache
+ */
+typedef std::vector<std::string*> servernamelist;
+
+/** A cached text file stored line by line.
+ */
+typedef std::deque<std::string> file_cache;
+
+#endif
+