summaryrefslogtreecommitdiffstats
blob: 1cdc7f2787957f1c10e89734bc7478e8c8ff2ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * 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<Form> {
		public:
			FormSerializer();

			virtual String serializePayload(boost::shared_ptr<Form>)  const;

		private:
			boost::shared_ptr<XMLElement> fieldToXML(boost::shared_ptr<FormField> field) const;
			void multiLineify(const String& text, const String& elementName, boost::shared_ptr<XMLElement> parent) const;
	};
}