00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 #ifndef GCC_VERSION
00047 #define GCC_VERSION (__GNUC__ * 10000 \
00048 + __GNUC_MINOR__ * 100 \
00049 + __GNUC_PATCHLEVEL__)
00050 #endif
00051
00052 #include "ABKCommon/sgi_stl_compat.h"
00053
00054 #ifndef _SGI_HASHMAP_H
00055 #define _SGI_HASHMAP_H
00056 #ifdef __GNUC__
00057 #if( __GNUC__ >= 3)
00058 #include <ext/hash_map>
00059 #include <string>
00060 #if(GCC_VERSION >= 30100)
00061 using __gnu_cxx::hash_map;
00062 using __gnu_cxx::hash;
00063 namespace __gnu_cxx
00064 {
00065 template<> struct hash< std::string >
00066 {
00067 size_t operator()( const std::string& x ) const
00068 {
00069 return hash< const char* >()( x.c_str() );
00070 }
00071 };
00072 }
00073 #else
00074 using std::hash_map;
00075 using std::hash;
00076 #endif
00077 #else
00078 #include <hash_map>
00079 #include <string>
00080 template<> struct hash< std::string >
00081 {
00082 size_t operator()( const std::string& x ) const
00083 {
00084 return hash< const char* >()( x.c_str() );
00085 }
00086 };
00087 #endif
00088 #else
00089 #ifdef _MSC_VER
00090 #include<hash_map>
00091 #ifndef _ONEHASH
00092 #define _ONEHASH
00093 template<class T> class hash : public std::hash_compare<T> {};
00094 #endif
00095 template<class A, class B, class C,class D> class hash_map : public std::hash_map<A,B,C> {};
00096 #else
00097 #include "ABKCommon/SGI_STL_COMPAT/hash_map.h"
00098 #endif
00099 #endif
00100 #endif
00101
00102
00103 #include <functional>
00104 using std::equal_to;