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 11 of file KeyedObjectManager.cpp.

Member Typedef Documentation

Definition at line 12 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 15 of file KeyedObjectManager.cpp.

15  {
16  auto p = m.insert(map_type::value_type(key,obj));
17  return p.second;
18  }
std::pair< const K, T > value_type
Definition: Map.h:94
std::pair< iterator, bool > insert(ValueType &&val)
Definition: Map.h:168

Member Data Documentation

map_type Containers::hashmap::m

Definition at line 13 of file KeyedObjectManager.cpp.

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

Definition at line 14 of file KeyedObjectManager.cpp.


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