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

Public Types

typedef std::map< long, void * > map_type
 

Public Member Functions

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

Public Attributes

map_type m
 
std::vector< void * > v
 

Detailed Description

Definition at line 24 of file KeyedObjectManager.cpp.

Member Typedef Documentation

typedef std::map<long, void*> Containers::map::map_type

Definition at line 25 of file KeyedObjectManager.cpp.

Constructor & Destructor Documentation

Containers::map::map ( )
default
Containers::map::map ( map &&  )
default

Member Function Documentation

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

Definition at line 28 of file KeyedObjectManager.cpp.

29  {
30  auto p = m.insert( map_type::value_type( key, obj ) );
31  return p.second;
32  }
T insert(T...args)

Member Data Documentation

map_type Containers::map::m

Definition at line 26 of file KeyedObjectManager.cpp.

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

Definition at line 27 of file KeyedObjectManager.cpp.


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