diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-11-01 20:18:36 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-11-03 12:17:42 (GMT) |
commit | 63a8085f02218d2dd2b51acf29280624d6317610 (patch) | |
tree | fe0019cf3d9cdc15f27732062a326dcdc7c2b11c /Swiften/FileTransfer/FileWriteBytestream.h | |
parent | f03b5eee1d92f686f4f2ccc8a0b10c18bac05e72 (diff) | |
download | swift-63a8085f02218d2dd2b51acf29280624d6317610.zip swift-63a8085f02218d2dd2b51acf29280624d6317610.tar.bz2 |
Added incoming IBB session.
Diffstat (limited to 'Swiften/FileTransfer/FileWriteBytestream.h')
-rw-r--r-- | Swiften/FileTransfer/FileWriteBytestream.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Swiften/FileTransfer/FileWriteBytestream.h b/Swiften/FileTransfer/FileWriteBytestream.h new file mode 100644 index 0000000..c6f7b39 --- /dev/null +++ b/Swiften/FileTransfer/FileWriteBytestream.h @@ -0,0 +1,26 @@ +/* + * 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 <boost/filesystem.hpp> +#include <boost/filesystem/fstream.hpp> + +#include "Swiften/FileTransfer/WriteBytestream.h" + +namespace Swift { + class FileWriteBytestream : public WriteBytestream { + public: + FileWriteBytestream(const boost::filesystem::path& file); + ~FileWriteBytestream(); + + virtual void write(const ByteArray&); + + private: + boost::filesystem::path file; + boost::filesystem::ofstream* stream; + }; +} |