|
Gaudi Framework, version v21r11 |
| Home | Generated: 30 Sep 2010 |
#include <MapBase.h>

Public Member Functions | |
| virtual | ~MapBase () |
| virtual destructor | |
Protected Member Functions | |
| void | throw_out_of_range_exception () const |
| throw std::out_of_range exception | |
The corresponding Python class provide the useful iterators, look-up, etc. This base-class in python is decorated with the following methods
__len__ __iter__ __iteritems__ __contains__ __repr__ __setitem__ __delitem__ __str__ __repr__ keys items values get has_key
Thus it behaves practically identically with builtin-type dict
Definition at line 46 of file MapBase.h.
| MapBase::~MapBase | ( | ) | [virtual] |
| void MapBase::throw_out_of_range_exception | ( | ) | const [protected] |
throw std::out_of_range exception
Definition at line 29 of file MapBase.cpp.
00030 { 00031 std::string _nam = System::typeinfoName ( typeid ( *this ) ) ; 00032 throw std::out_of_range ( _nam.c_str () ) ; 00033 }