#include <acsexmplPowerSupplyCurrentImpl.h>
Inheritance diagram for PowerSupplyCurrent:
Public Member Functions | |
PowerSupplyCurrent (const ACE_CString &name, baci::BACIComponent *component_p, baci::ROdouble *readback_p) | |
virtual void | setValue (baci::BACIProperty *property_p, baci::BACIValue *value_p, Completion &completion, CBDescOut &descOut) |
Private Member Functions | |
void | operator= (const PowerSupplyCurrent &) |
Private Attributes | |
baci::ROdouble * | m_readback_p |
|
Constuctor
|
|
ALMA C++ coding standards state copy operators should be disabled. |
|
Set value method (value mutator) We add this to override the setValue method inherited from baci::RWdouble. We do this to make the baci::RW property symetric to the baci::RO property passed to the constructor.
Reimplemented from baci::RWcontImpl<>.
|
|
m_readback_p is never created in this class. It just points to the baci::ROdouble passed to this class's constructor. This is done so that we can synchronize this class and the baci::ROdouble's value. |