summaryrefslogtreecommitdiffstats
blob: b70c1d404fa84c8e0b6e02296beb2a1ac151b635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2011 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Parser/PayloadParsers/MUCDestroyPayloadParser.h>

#include <Swiften/Base/foreach.h>

namespace Swift {

void MUCDestroyPayloadParser::handleTree(ParserElement::ref root) {
	std::string ns = root->getNamespace();
	std::string jid = root->getAttributes().getAttribute("jid");
	if (!jid.empty()) {
		getPayloadInternal()->setNewVenue(JID(jid));
	}
	getPayloadInternal()->setReason(root->getChild("reason", ns)->getText());
}

}