![]() |
|
|
Generated: 18 Jul 2008 |
#include <GaudiKernel/HashMap.h>
Inheritance diagram for GaudiUtils::HashMap< K, T, H >:


Definition at line 39 of file HashMap.h.
Public Types | |
| typedef H | hasher |
Public Member Functions | |
| hasher | hash_funct () const |
| typedef H GaudiUtils::HashMap< K, T, H >::hasher |
| hasher GaudiUtils::HashMap< K, T, H >::hash_funct | ( | ) | const [inline] |
Definition at line 44 of file HashMap.h.
00044 { 00045 // Marco Cl.: since on windows we are using a std::map, we have to provide a different implementation 00046 // for GaudiUtils::HashMap::hash_funct(). (std::map::hash_funct does not exist) 00047 #ifdef _WIN32 00048 return hasher(); 00049 #else 00050 return this->m_map.hash_funct(); 00051 #endif 00052 }