]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/hash_map.h
'svn propset -R svn:eol-style CR *' Set to UNIX-style always. Binaries are auto skipp...
[user/henk/code/inspircd.git] / include / hash_map.h
1 /*       +------------------------------------+\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 INSPIRCD_HASHMAP_H\r#define INSPIRCD_HASHMAP_H\r\r#include "inspircd_config.h"\r\r/** Where hash_map is varies from compiler to compiler\r * as it is not standard.\r */\r#ifndef WIN32\r#include <ext/hash_map>\r/** Oddball linux namespace for hash_map */\r#define nspace __gnu_cxx\r#else\r#include <hash_map>\r#define nspace stdext\r/** Oddball windows namespace for hash_map */\rusing stdext::hash_map;\r#endif\r\r#endif\r