![]() |
ATLAS Offline Software
|
#include <VarHandleProperty.h>
Public Member Functions | |
| Property (const std::string &name, SG::WriteHandle< T > &value) | |
| virtual | ~Property () |
| virtual VarHandleKeyProperty * | clone () const override |
| Return a new copy of this Property object. | |
| virtual bool | load (Gaudi::Details::PropertyBase &destination) const override |
| Set the value of another Property. | |
| virtual bool | assign (const Gaudi::Details::PropertyBase &source) override |
| Set the value of this Property from another. | |
| virtual std::string | toString () const override |
| Return a string representation of the value object. | |
| virtual void | toStream (std::ostream &out) const override |
| Write a string representation of the value object to a stream. | |
| virtual StatusCode | fromString (const std::string &s) override |
| Set this value object from a string. | |
| const SG::VarHandleKey & | value () const |
| Return the value object for this Property. | |
| bool | setValue (const SG::VarHandleKey &value) |
| Set the value object for this Property. | |
Private Attributes | |
| SG::VarHandleKey * | m_pValue |
| Pointer to the real property. | |
Definition at line 43 of file VarHandleProperty.h.
|
inline |
Definition at line 45 of file VarHandleProperty.h.
|
inlinevirtual |
Definition at line 47 of file VarHandleProperty.h.
|
overridevirtualinherited |
Set the value of this Property from another.
| destination | The Property from which the value should be copied. |
The value object of this source is copied to that of this Property by converting to a string and back again. Returns true on success, false on failure.
Definition at line 137 of file VarHandleKeyProperty.cxx.
|
overridevirtualinherited |
Return a new copy of this Property object.
The new object will be associated with the same value object as the original.
Definition at line 107 of file VarHandleKeyProperty.cxx.
|
overridevirtualinherited |
Set this value object from a string.
| s | String from which to initialize the value. |
Returns failure if the conversion does not succeed.
Definition at line 175 of file VarHandleKeyProperty.cxx.
|
overridevirtualinherited |
Set the value of another Property.
| destination | The Property whose value is changed. |
The value object of this Property is copied to that of destination by converting to a string and back again. Returns true on success, false on failure.
Definition at line 122 of file VarHandleKeyProperty.cxx.
|
inherited |
|
overridevirtualinherited |
Write a string representation of the value object to a stream.
| out | Stream to which to write. |
Definition at line 161 of file VarHandleKeyProperty.cxx.
|
overridevirtualinherited |
Return a string representation of the value object.
Definition at line 147 of file VarHandleKeyProperty.cxx.
|
inherited |
Return the value object for this Property.
Definition at line 190 of file VarHandleKeyProperty.cxx.
|
privateinherited |
Pointer to the real property.
Reference would be better, but Reflex does not support references yet
Definition at line 171 of file VarHandleKeyProperty.h.