/* * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include namespace Swift { class PayloadParserFactoryCollection; class SWIFTEN_API FormParserFactory : public PayloadParserFactory { public: FormParserFactory() { } virtual bool canParse(const std::string& /*element*/, const std::string& ns, const AttributeMap&) const { return ns == "jabber:x:data"; } virtual PayloadParser* createPayloadParser() { return new FormParser(); } }; }