/* * 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 #include #include #include namespace Swift { class WriteBytestream; class JID; class IncomingFileTransfer : public FileTransfer { public: typedef boost::shared_ptr ref; virtual ~IncomingFileTransfer(); virtual void accept( boost::shared_ptr, const FileTransferOptions& = FileTransferOptions()) = 0; virtual const JID& getSender() const = 0; virtual const JID& getRecipient() const = 0; }; }