diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-07-14 08:13:57 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-07-14 13:08:36 (GMT) |
commit | 003381f417caaae9918cd81fa53bcc0547caa4c9 (patch) | |
tree | c0571987e87a115e5a7ad03eca55db972f6686c6 /Swiften/FileTransfer | |
parent | 075c1f08245055e0060df2695e75bba54e697d36 (diff) | |
download | swift-contrib-003381f417caaae9918cd81fa53bcc0547caa4c9.zip swift-contrib-003381f417caaae9918cd81fa53bcc0547caa4c9.tar.bz2 |
Initial DLL support for Swiften.
All applications succesfully link against Swiften.dll.
Diffstat (limited to 'Swiften/FileTransfer')
-rw-r--r-- | Swiften/FileTransfer/FileReadBytestream.h | 3 | ||||
-rw-r--r-- | Swiften/FileTransfer/FileWriteBytestream.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Swiften/FileTransfer/FileReadBytestream.h b/Swiften/FileTransfer/FileReadBytestream.h index e9db2a4..4a2d738 100644 --- a/Swiften/FileTransfer/FileReadBytestream.h +++ b/Swiften/FileTransfer/FileReadBytestream.h @@ -9,10 +9,11 @@ #include <boost/filesystem/path.hpp> #include <boost/filesystem/fstream.hpp> +#include <Swiften/Base/API.h> #include <Swiften/FileTransfer/ReadBytestream.h> namespace Swift { - class FileReadBytestream : public ReadBytestream { + class SWIFTEN_API FileReadBytestream : public ReadBytestream { public: FileReadBytestream(const boost::filesystem::path& file); ~FileReadBytestream(); diff --git a/Swiften/FileTransfer/FileWriteBytestream.h b/Swiften/FileTransfer/FileWriteBytestream.h index 82c4a65..f72ac17 100644 --- a/Swiften/FileTransfer/FileWriteBytestream.h +++ b/Swiften/FileTransfer/FileWriteBytestream.h @@ -9,10 +9,11 @@ #include <boost/filesystem/path.hpp> #include <boost/filesystem/fstream.hpp> +#include <Swiften/Base/API.h> #include <Swiften/FileTransfer/WriteBytestream.h> namespace Swift { - class FileWriteBytestream : public WriteBytestream { + class SWIFTEN_API FileWriteBytestream : public WriteBytestream { public: FileWriteBytestream(const boost::filesystem::path& file); ~FileWriteBytestream(); |