[#Wrapper] = Wrapper :mrdocs: Simple wrapper class to serialize objects using a formatter; used by Using(). == Synopsis Declared in `<serialize.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Formatter, typename T> class Wrapper; ---- == Member Functions [cols="1,4"] |=== | Name| Description | xref:Wrapper/2constructor.adoc[`Wrapper`] [.small]#[constructor]# | Construct the wrapper around an object. | xref:Wrapper/Serialize.adoc[`Serialize`] | Serialize the wrapped object using the formatter. | xref:Wrapper/Unserialize.adoc[`Unserialize`] | Unserialize the wrapped object using the formatter. |=== == Protected Data Members [cols="1,4"] |=== | Name| Description | xref:Wrapper/m_object.adoc[`m_object`] | The wrapped object reference that the formatter operates on. |=== == Non-Member Functions [cols="1,4"] |=== | Name| Description | xref:Using.adoc[`Using`] | Cause serialization/deserialization of an object to be done using a specified formatter class. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#