blob: 5e83fadf658d578490ea59088059131616f16e76 (
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
|
#include <iostream>
#include "Swiften/Parser/MessageParser.h"
namespace Swift {
MessageParser::MessageParser(PayloadParserFactoryCollection* factories) :
GenericStanzaParser<Message>(factories) {
getStanzaGeneric()->setType(Message::Normal);
}
void MessageParser::handleStanzaAttributes(const AttributeMap& attributes) {
AttributeMap::const_iterator type = attributes.find("type");
if (type != attributes.end()) {
if (type->second == "chat") {
getStanzaGeneric()->setType(Message::Chat);
}
else if (type->second == "error") {
getStanzaGeneric()->setType(Message::Error);
}
else if (type->second == "groupchat") {
getStanzaGeneric()->setType(Message::Groupchat);
}
else if (type->second == "headline") {
getStanzaGeneric()->setType(Message::Headline);
}
else {
getStanzaGeneric()->setType(Message::Normal);
}
}
}
}
|