summaryrefslogtreecommitdiffstats
blob: 8de70404b8a9cc65a73bed62967bd1b9ee34da61 (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
28
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#ifndef SWIFTEN_StatusSerializer_H
#define SWIFTEN_StatusSerializer_H

#include "Swiften/Serializer/GenericPayloadSerializer.h"
#include "Swiften/Serializer/XML/XMLElement.h"
#include "Swiften/Serializer/XML/XMLTextNode.h"
#include "Swiften/Elements/Status.h"

namespace Swift {
	class StatusSerializer : public GenericPayloadSerializer<Status> {
		public:
			StatusSerializer() : GenericPayloadSerializer<Status>() {}

			virtual String serializePayload(boost::shared_ptr<Status> status)  const {
				XMLElement element("status");
				element.addNode(boost::shared_ptr<XMLTextNode>(new XMLTextNode(status->getText())));
				return element.serialize();
			}
	};
}

#endif