aboutsummaryrefslogtreecommitdiff
path: root/common/zlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/zlib.h')
-rw-r--r--common/zlib.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/common/zlib.h b/common/zlib.h
index 4da357d23c..641d4553cf 100644
--- a/common/zlib.h
+++ b/common/zlib.h
@@ -27,10 +27,12 @@
#define COMMON_ZLIB_H
#include "common/scummsys.h"
-#include "common/stream.h"
namespace Common {
+class SeekableReadStream;
+class WriteStream;
+
#if defined(USE_ZLIB)
/**
@@ -54,7 +56,7 @@ bool uncompress(byte *dst, unsigned long *dstLen, const byte *src, unsigned long
* It is safe to call this with a NULL parameter (in this case, NULL is
* returned).
*/
-Common::SeekableReadStream *wrapCompressedReadStream(Common::SeekableReadStream *toBeWrapped);
+SeekableReadStream *wrapCompressedReadStream(SeekableReadStream *toBeWrapped);
/**
* Take an arbitrary WriteStream and wrap it in a custom stream which provides
@@ -65,7 +67,7 @@ Common::SeekableReadStream *wrapCompressedReadStream(Common::SeekableReadStream
* It is safe to call this with a NULL parameter (in this case, NULL is
* returned).
*/
-Common::WriteStream *wrapCompressedWriteStream(Common::WriteStream *toBeWrapped);
+WriteStream *wrapCompressedWriteStream(WriteStream *toBeWrapped);
} // End of namespace Common