|
Gaudi Framework, version v21r9 |
| Home | Generated: 3 May 2010 |
#include <GaudiKernel/HashMap.h>


Public Types | |
| typedef H | hasher |
Public Member Functions | |
| hasher | hash_funct () const |
Definition at line 54 of file HashMap.h.
| typedef H GaudiUtils::HashMap< K, T, H, M >::hasher |
| hasher GaudiUtils::HashMap< K, T, H, M >::hash_funct | ( | ) | const [inline] |
Definition at line 59 of file HashMap.h.
00059 { 00060 // Marco Cl.: since on windows we are using a std::map, we have to provide a different implementation 00061 // for GaudiUtils::HashMap::hash_funct(). (std::map::hash_funct does not exist) 00062 #ifdef _WIN32 00063 return hasher(); 00064 #else 00065 return this->m_map.hash_funct(); 00066 #endif 00067 }