Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > by-pkgid > b7784b024bf0aaa96a4797b23fdf5f58 > files > 90

adonthell-debug-0.3.5-1mdv2009.1.x86_64.rpm

/*
   $Id: str_hash.h,v 1.4 2002/06/28 12:15:21 gnurou Exp $

   (C) Copyright 2001 Alexandre Courbot
   Part of the Adonthell Project http://adonthell.linuxgames.com

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License.
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY.

   See the COPYING file for more details
*/

/**
 * @file   str_hash.h
 * @author Alexandre Courbot <alexandrecourbot@linuxgames.com>
 * 
 * @brief  Declares the hash<string> type, to be able to declare
 *         hash_maps with strings as keys.
 */ 

#ifndef STR_HASH_
#define STR_HASH_
 
#if __GNUG__ > 2
#include <ext/hash_map>
#else
#include <hash_map>
#endif
#include <string>

#if __GNUG__ > 2
namespace __gnu_cxx
#else
namespace std
#endif
{
    template<> struct hash<std::string>
    {
        size_t operator()(const std::string & __s) const { return __stl_hash_string(__s.c_str()); }
    };
    
    
};

#if __GNUG__ > 2
namespace std { using namespace __gnu_cxx; };
#endif

#endif