A Dummy Empty Marshaller. More...
#include <rtt/marsh/EmptyMarshaller.hpp>
Public Member Functions | |
virtual void | flush () |
Flush all buffers, write footers. | |
virtual void | serialize (PropertyBase *v) |
Serialize a property. | |
virtual void | serialize (const PropertyBag &v) |
Serialize the contents of a property bag with headers and footers. |
A Dummy Empty Marshaller.
Definition at line 49 of file EmptyMarshaller.hpp.
virtual void RTT::EmptyMarshaller::flush | ( | ) | [virtual] |
Flush all buffers, write footers.
Instructs the Marshaller 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.
Implements RTT::Marshaller.
virtual void RTT::EmptyMarshaller::serialize | ( | const PropertyBag & | v | ) | [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. |
Implements RTT::Marshaller.
virtual void RTT::EmptyMarshaller::serialize | ( | PropertyBase * | v | ) | [virtual] |