diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-07-15 07:07:53 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-07-15 07:07:53 (GMT) |
commit | 7a591138e89ad71ee1dd9825d7705c94f9bb50d2 (patch) | |
tree | 25b9832b234d498ff359ee6d60758004a3232278 /Swiften/Compress/ZLibCodecompressor_Private.h | |
parent | fbe2f40509da8c6c25d07de18ded3c0e3194ef6b (diff) | |
download | swift-contrib-7a591138e89ad71ee1dd9825d7705c94f9bb50d2.zip swift-contrib-7a591138e89ad71ee1dd9825d7705c94f9bb50d2.tar.bz2 |
Hide ZLib implementation.
Diffstat (limited to 'Swiften/Compress/ZLibCodecompressor_Private.h')
-rw-r--r-- | Swiften/Compress/ZLibCodecompressor_Private.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Swiften/Compress/ZLibCodecompressor_Private.h b/Swiften/Compress/ZLibCodecompressor_Private.h new file mode 100644 index 0000000..1f24b83 --- /dev/null +++ b/Swiften/Compress/ZLibCodecompressor_Private.h @@ -0,0 +1,17 @@ +/* + * Copyright (c) 2012 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <Swiften/Compress/ZLibCodecompressor.h> + +#include <zlib.h> + +namespace Swift { + struct ZLibCodecompressor::Private { + z_stream stream; + }; +} |