The Gaudi Framework  v30r3 (a5ef0a68)
Containers::hashmap Struct Reference
Collaboration diagram for Containers::hashmap:

Public Types

typedef GaudiUtils::HashMap< long, void * > map_type
 

Public Member Functions

bool insert (void *obj, long key)
 
 hashmap ()=default
 
 hashmap (hashmap &&)=default
 

Public Attributes

map_type m
 
std::vector< void * > v
 

Detailed Description

Definition at line 12 of file KeyedObjectManager.cpp.

Member Typedef Documentation

Definition at line 13 of file KeyedObjectManager.cpp.

Constructor & Destructor Documentation

Containers::hashmap::hashmap ( )
default
Containers::hashmap::hashmap ( hashmap &&  )
default

Member Function Documentation

bool Containers::hashmap::insert ( void *  obj,
long  key 
)
inline

Definition at line 16 of file KeyedObjectManager.cpp.

17  {
18  auto p = m.insert( map_type::value_type( key, obj ) );
19  return p.second;
20  }
std::pair< iterator, bool > insert(ValueType &&val)
Definition: Map.h:174

Member Data Documentation

map_type Containers::hashmap::m

Definition at line 14 of file KeyedObjectManager.cpp.

std::vector<void*> Containers::hashmap::v

Definition at line 15 of file KeyedObjectManager.cpp.


The documentation for this struct was generated from the following file: