/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #ifndef SWIFTEN_PresenceSerializer_H #define SWIFTEN_PresenceSerializer_H #include #include "Swiften/Serializer/GenericStanzaSerializer.h" #include "Swiften/Elements/Presence.h" namespace Swift { class PresenceSerializer : public GenericStanzaSerializer { public: PresenceSerializer(PayloadSerializerCollection* payloadSerializers); private: virtual void setStanzaSpecificAttributesGeneric( boost::shared_ptr presence, XMLElement& element) const; }; } #endif