/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #ifndef SWIFTEN_BodySerializer_H #define SWIFTEN_BodySerializer_H #include "Swiften/Serializer/GenericPayloadSerializer.h" #include "Swiften/Serializer/XML/XMLTextNode.h" #include "Swiften/Elements/Body.h" namespace Swift { class BodySerializer : public GenericPayloadSerializer { public: BodySerializer() : GenericPayloadSerializer() {} virtual String serializePayload(boost::shared_ptr body) const { XMLTextNode textNode(body->getText()); return "" + textNode.serialize() + ""; } }; } #endif