diff options
author | Tobias Markmann <tm@ayena.de> | 2015-02-04 13:56:42 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2015-02-09 14:09:18 (GMT) |
commit | ef319397be8439482fdf95f46a29643d15980b37 (patch) | |
tree | 01b1b70cedccbbc7f5dde7d72939c3cfeeee1784 /Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h | |
parent | 7d3df55bf5fd93b3eaca36cc43cb22ea7879bf7e (diff) | |
download | swift-ef319397be8439482fdf95f46a29643d15980b37.zip swift-ef319397be8439482fdf95f46a29643d15980b37.tar.bz2 |
Update DiscoInfo string for Jingle file-transfer to :4 and remove obsolete files
Test-Information:
Unit tests run successful on OS X 10.9.5
Change-Id: I9df0c798723f79df85cfc7301aed0a7ad6309904
Diffstat (limited to 'Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h')
-rw-r--r-- | Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h b/Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h deleted file mode 100644 index d5333ad..0000000 --- a/Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) 2011 Tobias Markmann - * Licensed under the simplified BSD license. - * See Documentation/Licenses/BSD-simplified.txt for more information. - */ - -#pragma once - -#include <Swiften/Elements/JingleFileTransferReceived.h> -#include <Swiften/Parser/GenericPayloadParser.h> - -namespace Swift { - -class JingleFileTransferReceivedParser : public GenericPayloadParser<JingleFileTransferReceived> { -public: - JingleFileTransferReceivedParser(); - - virtual void handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes); - virtual void handleEndElement(const std::string& element, const std::string&); - virtual void handleCharacterData(const std::string& data); - -private: - boost::shared_ptr<PayloadParser> currentPayloadParser; - int level; -}; - -} - |