#include <baciDevIO.h>
Inheritance diagram for DevIO< T >:
Public Member Functions | |
DevIO () | |
virtual | ~DevIO () |
virtual bool | initializeValue () |
virtual T | read (ACS::Time ×tamp) |
virtual void | write (const T &value, ACS::Time ×tamp) |
Public Attributes | |
bool | m_initialize |
|
Standard constructor |
|
Destructor |
|
The return value of initializeValue function tells the constructor of property if it has to set initial value of DevIO to default value or not. The default value of property is read from CDB. InitializeValue: If true ACS will try to automatically set the value upon initialization.
Reimplemented in DevIOMem< T >.
|
|
Method to read a value. It has to be override by implementation of DevIO. If the method is not overriden, and it is called than #ACSErrTypeCommon::NotImplementedExImpl exception is thrown!
Reimplemented in DevIOMem< T >.
|
|
Method to write a value. It has to be override by implementation of DevIO If the method is not overriden, and it is called than #ACSErrTypeCommon::NotImplementedExImpl exception is thrown!
Reimplemented in DevIOMem< T >.
|
|
If true attempt to initialize the value at instanciation. The value is set by the attribute in the CDB, by default this is false. |