#include <rtt/marsh/INIMarshaller.hpp>

Definition at line 55 of file INIMarshaller.hpp.
Public Member Functions | |
| INIMarshaller (output_stream &os) | |
| virtual void | serialize (const PropertyBase *p) |
| virtual void | serialize (const PropertyBag &v) |
| Serialize the contents of a property bag with headers and footers. | |
| virtual void | flush () |
| Flush all buffers, write footers. | |
| virtual void | serialize (PropertyBase *v)=0 |
| Serialize a property. | |
Protected Member Functions | |
| virtual void | introspect (const PropertyBase *v) |
| virtual void | introspect (const Property< PropertyBag > &b) |
| virtual void | introspect (PropertyBase *p)=0 |
| Callback for a Property which is not a PropertyBag. | |
| virtual void | introspect (Property< PropertyBag > &p)=0 |
| Callback for a Property which is a PropertyBag. | |
Protected Attributes | |
| output_stream & | _os |
| virtual void serialize | ( | const PropertyBag & | v | ) | [inline, 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 Marshaller.
Definition at line 82 of file INIMarshaller.hpp.
References PropertyBag::identify().
| virtual void flush | ( | ) | [inline, 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 Marshaller.
Definition at line 89 of file INIMarshaller.hpp.
| virtual void serialize | ( | PropertyBase * | v | ) | [pure virtual, inherited] |
Serialize a property.
| v | The property to be serialized. |
Implemented in CPFMarshaller< std::ostream >, EmptyHeaderMarshaller, EmptyMarshaller, Orocos1Marshaller, PropertyMarshaller, SimpleMarshaller, TableHeaderMarshaller, TableMarshaller, and XMLMarshaller.
Referenced by PropertyMarshaller::serialize().
1.5.6