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

#pragma once

#include <Swiften/Base/API.h>
#include <Swiften/Elements/MUCItem.h>
#include <Swiften/Parser/GenericPayloadTreeParser.h>

namespace Swift {
	class SWIFTEN_API MUCItemParser  {
		public:
			static MUCItem itemFromTree(ParserElement::ref root);
		private:
			static boost::optional<MUCOccupant::Role> parseRole(const std::string& itemString);
			static boost::optional<MUCOccupant::Affiliation> parseAffiliation(const std::string& statusString);
	};
}