![]() |
The Gaudi Framework
v26r0
|
List of properties. More...
#include <GaudiKernel/PropertyList.h>


Public Member Functions | |
| PropertyList () | |
| Constructor. More... | |
| PropertyList (const std::string &name) | |
| Constructor giving a name. More... | |
| virtual | ~PropertyList () |
| Virtual destructor. More... | |
| bool | isRef () const |
| Accessor members (const) More... | |
| void | addProperty (const std::string &name, Property &p) |
| Add a property to the list. More... | |
| void | addProperty (Property &p) |
| Add a property to the list. More... | |
| void | removeProperty (const std::string &name) |
| Remove a property from the list. More... | |
| void | removeProperty (Property &p) |
| Remove a property from the list. More... | |
| bool | assign (const Property &p) |
| Property implementation: set property. More... | |
| bool | load (Property &p) const |
| Property implementation: get property. More... | |
| bool | assign (const std::string &name, const Property &p) |
| Property implementation: set property. More... | |
| bool | load (const std::string &name, Property &p) const |
| Property implementation: get property. More... | |
| const Property & | getProperty (const std::string &name) const |
| Get the property with a given name. More... | |
| const std::vector< Property * > & | getProperties () const |
| Get the complete list of properties. More... | |
Public Member Functions inherited from Property | |
| const std::string & | name () const |
| property name More... | |
| const std::string & | documentation () const |
| property documentation More... | |
| const std::type_info * | type_info () const |
| property type-info More... | |
| std::string | type () const |
| property type More... | |
| virtual std::string | toString () const =0 |
| value -> string More... | |
| virtual void | toStream (std::ostream &out) const =0 |
| value -> stream More... | |
| virtual StatusCode | fromString (const std::string &value)=0 |
| string -> value More... | |
| const PropertyCallbackFunctor * | readCallBack () const |
| Call-back functor at reading: the functor is owned by property! More... | |
| const PropertyCallbackFunctor * | updateCallBack () const |
| Call-back functor for update: the functor is owned by property! More... | |
| virtual void | declareReadHandler (PropertyCallbackFunctor *pf) |
| set new callback for reading More... | |
| virtual void | declareUpdateHandler (PropertyCallbackFunctor *pf) |
| set new callback for update More... | |
| template<class HT > | |
| void | declareReadHandler (void(HT::*MF)(Property &), HT *instance) |
| template<class HT > | |
| void | declareUpdateHandler (void(HT::*MF)(Property &), HT *instance) |
| virtual void | useReadHandler () const |
| use the call-back function at reading More... | |
| virtual bool | useUpdateHandler () |
| use the call-back function at update More... | |
| virtual | ~Property () |
| virtual destructor More... | |
| virtual Property * | clone () const =0 |
| clone: "virtual constructor" More... | |
| void | setName (const std::string &value) |
| set the new value for the property name More... | |
| void | setDocumentation (const std::string &documentation) |
| set the documentation string More... | |
| virtual std::ostream & | fillStream (std::ostream &) const |
| the printout of the property value More... | |
Private Attributes | |
| std::vector< Property * > | m_propertyList |
Additional Inherited Members | |
Protected Member Functions inherited from Property | |
| Property (const std::type_info &type, const std::string &name="") | |
| constructor from the property name and the type More... | |
| Property (const std::string &name, const std::type_info &type) | |
| constructor from the property name and the type More... | |
| Property (const Property &right) | |
| copy constructor More... | |
| Property & | operator= (const Property &right) |
| assignment operator More... | |
Protected Attributes inherited from Property | |
| PropertyCallbackFunctor * | m_readCallBack |
| PropertyCallbackFunctor * | m_updateCallBack |
List of properties.
Definition at line 17 of file PropertyList.h.
| PropertyList::PropertyList | ( | ) |
Constructor.
| PropertyList::PropertyList | ( | const std::string & | name | ) |
Constructor giving a name.
|
virtual |
Virtual destructor.
| void PropertyList::addProperty | ( | const std::string & | name, |
| Property & | p | ||
| ) |
Add a property to the list.
| void PropertyList::addProperty | ( | Property & | p | ) |
Add a property to the list.
|
virtual |
| bool PropertyList::assign | ( | const std::string & | name, |
| const Property & | p | ||
| ) |
Property implementation: set property.
| const std::vector<Property*>& PropertyList::getProperties | ( | ) | const |
Get the complete list of properties.
| const Property& PropertyList::getProperty | ( | const std::string & | name | ) | const |
Get the property with a given name.
|
inline |
|
virtual |
| bool PropertyList::load | ( | const std::string & | name, |
| Property & | p | ||
| ) | const |
Property implementation: get property.
| void PropertyList::removeProperty | ( | const std::string & | name | ) |
Remove a property from the list.
| void PropertyList::removeProperty | ( | Property & | p | ) |
Remove a property from the list.
|
private |
Definition at line 53 of file PropertyList.h.