Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
|
Maps Validators to integers. More...
#include <Teuchos_ValidatorMaps.hpp>
Public Types | |
typedef std::map < ParameterEntryValidator::ValidatorID, RCP< ParameterEntryValidator > > | ValidatorMap |
typedef std::pair < ParameterEntryValidator::ValidatorID, RCP< ParameterEntryValidator > > | IDValidatorPair |
typedef ValidatorMap::iterator | iterator |
typedef ValidatorMap::const_iterator | const_iterator |
Public Member Functions | |
void | insert (IDValidatorPair toInsert) |
inserts an IDValidatorPair into the map. More... | |
const_iterator | find (int id) const |
Retrieves and iterator to a validator and id based on the id given. More... | |
const_iterator | begin () const |
Returns a const_reference to the beginning of the map. More... | |
const_iterator | end () const |
Returns a const_reference to the end of the map. More... | |
size_t | erase (const ParameterEntryValidator::ValidatorID &x) |
removes the specified validator from the map. More... | |
Private Attributes | |
ValidatorMap | validatorMap |
Maps Validators to integers.
Definition at line 57 of file Teuchos_ValidatorMaps.hpp.
typedef std::map<ParameterEntryValidator::ValidatorID, RCP<ParameterEntryValidator> > Teuchos::IDtoValidatorMap::ValidatorMap |
Definition at line 62 of file Teuchos_ValidatorMaps.hpp.
typedef std::pair<ParameterEntryValidator::ValidatorID, RCP<ParameterEntryValidator> > Teuchos::IDtoValidatorMap::IDValidatorPair |
Definition at line 66 of file Teuchos_ValidatorMaps.hpp.
typedef ValidatorMap::iterator Teuchos::IDtoValidatorMap::iterator |
Definition at line 69 of file Teuchos_ValidatorMaps.hpp.
typedef ValidatorMap::const_iterator Teuchos::IDtoValidatorMap::const_iterator |
Definition at line 72 of file Teuchos_ValidatorMaps.hpp.
void Teuchos::IDtoValidatorMap::insert | ( | IDValidatorPair | toInsert | ) |
inserts an IDValidatorPair into the map.
Definition at line 47 of file Teuchos_ValidatorMaps.cpp.
IDtoValidatorMap::const_iterator Teuchos::IDtoValidatorMap::find | ( | int | id | ) | const |
Retrieves and iterator to a validator and id based on the id given.
If no validator is found that has been mappend to the given id, a reference to the end of the map is returned.
Definition at line 53 of file Teuchos_ValidatorMaps.cpp.
IDtoValidatorMap::const_iterator Teuchos::IDtoValidatorMap::begin | ( | ) | const |
Returns a const_reference to the beginning of the map.
Definition at line 59 of file Teuchos_ValidatorMaps.cpp.
IDtoValidatorMap::const_iterator Teuchos::IDtoValidatorMap::end | ( | ) | const |
Returns a const_reference to the end of the map.
Definition at line 65 of file Teuchos_ValidatorMaps.cpp.
|
inline |
removes the specified validator from the map.
Definition at line 92 of file Teuchos_ValidatorMaps.hpp.
|
private |
Definition at line 98 of file Teuchos_ValidatorMaps.hpp.