|
Gaudi Framework, version v21r9 |
| Home | Generated: 3 May 2010 |
Public Types | |
| typedef GaudiUtils::HashMap < long, void * > | map_type |
Public Member Functions | |
| bool | insert (void *obj, long key) |
Public Attributes | |
| map_type | m |
| std::vector< void * > | v |
Definition at line 12 of file KeyedObjectManager.cpp.
| typedef GaudiUtils::HashMap<long, void*> Containers::hashmap::map_type |
Definition at line 13 of file KeyedObjectManager.cpp.
Definition at line 16 of file KeyedObjectManager.cpp.
00016 { 00017 std::pair<map_type::iterator,bool> p = 00018 m.insert(map_type::value_type(key,obj)); 00019 return p.second; 00020 }
Definition at line 14 of file KeyedObjectManager.cpp.
Definition at line 15 of file KeyedObjectManager.cpp.