diff options
Diffstat (limited to 'Swiften/FileTransfer/BytestreamsRequest.h')
-rw-r--r-- | Swiften/FileTransfer/BytestreamsRequest.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Swiften/FileTransfer/BytestreamsRequest.h b/Swiften/FileTransfer/BytestreamsRequest.h new file mode 100644 index 0000000..71b93ec --- /dev/null +++ b/Swiften/FileTransfer/BytestreamsRequest.h @@ -0,0 +1,24 @@ +/* + * 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 "Swiften/Queries/GenericRequest.h" +#include "Swiften/Elements/Bytestreams.h" +#include "Swiften/Base/Shared.h" + +namespace Swift { + class BytestreamsRequest : public GenericRequest<Bytestreams>, public Shared<BytestreamsRequest> { + public: + static ref create(const JID& jid, boost::shared_ptr<Bytestreams> payload, IQRouter* router) { + return ref(new BytestreamsRequest(jid, payload, router)); + } + + private: + BytestreamsRequest(const JID& jid, boost::shared_ptr<Bytestreams> payload, IQRouter* router) : GenericRequest<Bytestreams>(IQ::Set, jid, payload, router) { + } + }; +} |