The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
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 20 of file KeyedObjectManager.cpp.

Member Typedef Documentation

◆ map_type

Definition at line 21 of file KeyedObjectManager.cpp.

Constructor & Destructor Documentation

◆ hashmap() [1/2]

Containers::hashmap::hashmap ( )
default

◆ hashmap() [2/2]

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

Member Function Documentation

◆ insert()

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

Definition at line 24 of file KeyedObjectManager.cpp.

24 {
25 auto p = m.insert( map_type::value_type( key, obj ) );
26 return p.second;
27 }

Member Data Documentation

◆ m

map_type Containers::hashmap::m

Definition at line 22 of file KeyedObjectManager.cpp.

◆ v

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

Definition at line 23 of file KeyedObjectManager.cpp.


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