summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/FileTransfer/FileTransferManager.h')
-rw-r--r--Swiften/FileTransfer/FileTransferManager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/FileTransfer/FileTransferManager.h b/Swiften/FileTransfer/FileTransferManager.h
index be2902a..60deeaa 100644
--- a/Swiften/FileTransfer/FileTransferManager.h
+++ b/Swiften/FileTransfer/FileTransferManager.h
@@ -36,7 +36,7 @@ namespace Swift {
const JID& to,
const boost::filesystem::path& filepath,
const std::string& description,
- boost::shared_ptr<ReadBytestream> bytestream,
+ std::shared_ptr<ReadBytestream> bytestream,
const FileTransferOptions& = FileTransferOptions()) = 0;
virtual OutgoingFileTransfer::ref createOutgoingFileTransfer(
const JID& to,
@@ -44,7 +44,7 @@ namespace Swift {
const std::string& description,
const boost::uintmax_t sizeInBytes,
const boost::posix_time::ptime& lastModified,
- boost::shared_ptr<ReadBytestream> bytestream,
+ std::shared_ptr<ReadBytestream> bytestream,
const FileTransferOptions& = FileTransferOptions()) = 0;
static bool isSupportedBy(const DiscoInfo::ref info);