/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include "Swiften/Serializer/GenericPayloadSerializer.h" #include "Swiften/Elements/Form.h" #include "Swiften/Elements/FormField.h" #include "Swiften/Serializer/XML/XMLElement.h" namespace Swift { class FormSerializer : public GenericPayloadSerializer
{ public: FormSerializer(); virtual String serializePayload(boost::shared_ptr) const; private: boost::shared_ptr fieldToXML(boost::shared_ptr field) const; void multiLineify(const String& text, const String& elementName, boost::shared_ptr parent) const; }; }