![]() |
|
|
Generated: 8 Jan 2009 |
#include <GaudiKernel/HashMap.h>


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