A MarshallInterface converts Property objects to a (file/text) format. More...
#include <MarshallInterface.hpp>
Public Member Functions | |
virtual void | flush ()=0 |
virtual void | serialize (base::PropertyBase *v)=0 |
virtual void | serialize (const PropertyBag &v)=0 |
virtual | ~MarshallInterface () |
A MarshallInterface converts Property objects to a (file/text) format.
Definition at line 55 of file MarshallInterface.hpp.
|
inlinevirtual |
Definition at line 58 of file MarshallInterface.hpp.
|
pure virtual |
Flush all buffers, write footers. Instructs the MarshallInterface to flush any remaining buffered data and write a footer to indicate that serialization is done. A marshaller may choose to write nothing until this function is called, or print a summary, or anything else.
Implemented in RTT::marsh::XMLRPCMarshaller< output_stream >, RTT::marsh::CPFMarshaller< std::ostream >, and RTT::marsh::PropertyMarshaller.
|
pure virtual |
Serialize a property.
v | The property to be serialized. |
Implemented in RTT::marsh::CPFMarshaller< std::ostream >, and RTT::marsh::PropertyMarshaller.
|
pure virtual |
Serialize the contents of a property bag with headers and footers. Use this method on your 'root' PropertyBag, such that headers and footers are written.
v | The property bag to be serialized. |
Implemented in RTT::marsh::CPFMarshaller< std::ostream >, RTT::marsh::XMLRPCMarshaller< output_stream >, and RTT::marsh::PropertyMarshaller.