Data convert callback abstract class on write() More...
#include <PortCallback.h>
Public Member Functions | |
virtual DataType | operator() (const DataType &value)=0 |
Callback function. | |
virtual | ~OnWriteConvert (void) |
Destructor. |
Data convert callback abstract class on write()
This is the interface for callback invoked when data is done write() into the OutPort's buffer. The return value of this callback will be stored in the buffer.
Definition at line 258 of file PortCallback.h.
virtual RTC::OnWriteConvert< DataType >::~OnWriteConvert | ( | void | ) | [inline, virtual] |
virtual DataType RTC::OnWriteConvert< DataType >::operator() | ( | const DataType & | value | ) | [pure virtual] |
Callback function.
This is the callback function invoked when data is written into the buffer.
value | Data to be converted |
Implemented in OutPort::OnWriteConvertMock< DataType >.