diff --git a/src/BlockParser.cpp b/src/BlockParser.cpp new file mode 100644 index 0000000000000000000000000000000000000000..71d7287b9fe70d5cb3b4e33807dd133c2c363da7 --- /dev/null +++ b/src/BlockParser.cpp @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2011 Jan Kaluza + * Licensed under the Simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +#include + +namespace Transport { + +// This payload is NOT part of ANY XEP and it is only +// libtransport related extension. +BlockParser::BlockParser() /*: level_(0)*/ { +} + +void BlockParser::handleStartElement(const std::string& /*element*/, const std::string& /*ns*/, const Swift::AttributeMap& /*attributes*/) { +} + +void BlockParser::handleEndElement(const std::string&, const std::string&) { +} + +void BlockParser::handleCharacterData(const std::string&) { + +} + +}