diff options
Diffstat (limited to 'Swiften/Parser/PayloadParsers/CommandParserFactory.h')
-rw-r--r-- | Swiften/Parser/PayloadParsers/CommandParserFactory.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Swiften/Parser/PayloadParsers/CommandParserFactory.h b/Swiften/Parser/PayloadParsers/CommandParserFactory.h deleted file mode 100644 index 47d3333..0000000 --- a/Swiften/Parser/PayloadParsers/CommandParserFactory.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#pragma once - -#include <Swiften/Parser/PayloadParserFactory.h> -#include <Swiften/Parser/PayloadParsers/CommandParser.h> - -namespace Swift { - class PayloadParserFactoryCollection; - - class CommandParserFactory : public PayloadParserFactory { - public: - CommandParserFactory() { - } - - virtual bool canParse(const std::string& element, const std::string& ns, const AttributeMap&) const { - return ns == "http://jabber.org/protocol/commands" && element == "command"; - } - - virtual PayloadParser* createPayloadParser() { - return new CommandParser(); - } - - }; -} |