/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include namespace Swift { class XMLElement; class SWIFTEN_API MessageSerializer : public GenericStanzaSerializer { public: MessageSerializer(PayloadSerializerCollection* payloadSerializers, const boost::optional& explitNS = boost::optional()); private: void setStanzaSpecificAttributesGeneric( std::shared_ptr message, XMLElement& element) const; }; }