/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #ifndef SWIFTEN_UNKNOWNPAYLOADPARSER_H #define SWIFTEN_UNKNOWNPAYLOADPARSER_H #include #include "Swiften/Parser/PayloadParser.h" namespace Swift { class UnknownPayloadParser : public PayloadParser { public: UnknownPayloadParser() {} virtual void handleStartElement(const std::string&, const std::string&, const AttributeMap&) {} virtual void handleEndElement(const std::string&, const std::string&) {} virtual void handleCharacterData(const std::string&) {} virtual boost::shared_ptr getPayload() const { return boost::shared_ptr(); } }; } #endif