/* * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include #include namespace Swift { class PayloadParserFactoryCollection; class SWIFTEN_API MUCUserPayloadParser : public GenericPayloadTreeParser { public: MUCUserPayloadParser(PayloadParserFactoryCollection* collection) : factories(collection) {} virtual void handleTree(ParserElement::ref root); private: PayloadParserFactoryCollection* factories; }; }