zeep::xml::serializer — serializer is the class that initiates the serialization process.
// In header: </build/libzeep-I9e1Ta/libzeep-3.0.5/zeep/xml/serialize.hpp> struct serializer { // construct/copy/destruct serializer(container *); // public member functions template<typename T> serializer & operator&(const boost::serialization::nvp< T > &); template<typename T> serializer & operator&(const element_nvp< T > &); template<typename T> serializer & operator&(const attribute_nvp< T > &); template<typename T> serializer & serialize_element(const char *, const T &); template<typename T> serializer & serialize_attribute(const char *, const T &); // public data members container * m_node; };
serializer, deserializer and schema_creator are classes that can be used to initiate the serialization. They are the Archive classes that are the first parameter to the templated function 'serialize' in the classes that can be serialized. (See boost::serialization for more info).
serializer
public member functionstemplate<typename T> serializer & operator&(const boost::serialization::nvp< T > & rhs);
template<typename T> serializer & operator&(const element_nvp< T > & rhs);
template<typename T> serializer & operator&(const attribute_nvp< T > & rhs);
template<typename T> serializer & serialize_element(const char * name, const T & data);
template<typename T> serializer & serialize_attribute(const char * name, const T & data);