#include <DetectorMap.h>
Public Member Functions | |
create_map (const T &key, const U &val) | |
create_map< T, U > & | operator() (const T &key, const U &val) |
operator std::map< T, U > () | |
Private Attributes | |
std::map< T, U > | m_map |
Definition at line 7 of file DetectorMap.h.
create_map< T, U >::create_map | ( | const T & | key, | |
const U & | val | |||
) | [inline] |
Definition at line 12 of file DetectorMap.h.
References create_map< T, U >::m_map.
00012 { m_map[key] = val; }
create_map< T, U >::operator std::map< T, U > | ( | ) | [inline] |
Definition at line 18 of file DetectorMap.h.
References create_map< T, U >::m_map.
00018 { return m_map; }
create_map<T, U>& create_map< T, U >::operator() | ( | const T & | key, | |
const U & | val | |||
) | [inline] |
Definition at line 13 of file DetectorMap.h.
References create_map< T, U >::m_map.
00014 { 00015 m_map[key] = val; 00016 return *this; 00017 }
std::map<T, U> create_map< T, U >::m_map [private] |
Definition at line 10 of file DetectorMap.h.
Referenced by create_map< T, U >::create_map(), create_map< T, U >::operator std::map< T, U >(), and create_map< T, U >::operator()().