diff options
author | HanzZ <hanzz.k@gmail.com> | 2011-09-30 11:38:49 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-09-30 17:11:45 (GMT) |
commit | a98f648f5cfbf474c566bd63193047e5381e7d5e (patch) | |
tree | c9930886d46da6c423a8c71a9e0ffc55598fdb92 /Swiften/FileTransfer/BytestreamsRequest.h | |
parent | 78ae057c543f4e272332430981eecd06850fbd96 (diff) | |
download | swift-contrib-a98f648f5cfbf474c566bd63193047e5381e7d5e.zip swift-contrib-a98f648f5cfbf474c566bd63193047e5381e7d5e.tar.bz2 |
Added way to set from in BytestreamsRequest and StreamInitiationRequest
Copyright (c) 2011 Jan Kaluza
Licensed under the Simplified BSD license.
See Documentation/Licenses/BSD-simplified.txt for more information.
Diffstat (limited to 'Swiften/FileTransfer/BytestreamsRequest.h')
-rw-r--r-- | Swiften/FileTransfer/BytestreamsRequest.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Swiften/FileTransfer/BytestreamsRequest.h b/Swiften/FileTransfer/BytestreamsRequest.h index 0e97b5c..fee09ee 100644 --- a/Swiften/FileTransfer/BytestreamsRequest.h +++ b/Swiften/FileTransfer/BytestreamsRequest.h @@ -20,8 +20,15 @@ namespace Swift { return ref(new BytestreamsRequest(jid, payload, router)); } + static ref create(const JID& from, const JID& to, boost::shared_ptr<Bytestreams> payload, IQRouter* router) { + return ref(new BytestreamsRequest(from, to, payload, router)); + } + private: BytestreamsRequest(const JID& jid, boost::shared_ptr<Bytestreams> payload, IQRouter* router) : GenericRequest<Bytestreams>(IQ::Set, jid, payload, router) { } + + BytestreamsRequest(const JID& from, const JID& to, boost::shared_ptr<Bytestreams> payload, IQRouter* router) : GenericRequest<Bytestreams>(IQ::Set, from, to, payload, router) { + } }; } |