summaryrefslogtreecommitdiffstats
blob: e185f8d7c24662e6c00ce586f8fbc78aaa01716a (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
29
30
31
32
33
/*
 * Copyright (c) 2010-2014 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Serializer/MessageSerializer.h>
#include <Swiften/Serializer/XML/XMLElement.h>

namespace Swift {

MessageSerializer::MessageSerializer(PayloadSerializerCollection* payloadSerializers, const boost::optional<std::string>& explicitNS) :
		GenericStanzaSerializer<Message>("message", payloadSerializers, explicitNS) {
}

void MessageSerializer::setStanzaSpecificAttributesGeneric(
		boost::shared_ptr<Message> message, 
		XMLElement& element) const {
	if (message->getType() == Message::Chat) {
		element.setAttribute("type", "chat");
	}
	else if (message->getType() == Message::Groupchat) {
		element.setAttribute("type", "groupchat");
	}
	else if (message->getType() == Message::Headline) {
		element.setAttribute("type", "headline");
	}
	else if (message->getType() == Message::Error) {
		element.setAttribute("type", "error");
	}
}

}