#ifndef _WX_WXZSTREAM_H__
#define _WX_WXZSTREAM_H__
-#ifdef __GNUG__
-#pragma interface
+#if defined(__GNUG__) && !defined(__APPLE__)
+#pragma interface "zstream.h"
#endif
#include "wx/defs.h"
-#ifdef wxUSE_ZLIB
+#if wxUSE_ZLIB && wxUSE_STREAMS
-#include <wx/stream.h>
+#include "wx/stream.h"
class WXDLLEXPORT wxZlibInputStream: public wxFilterInputStream {
public:
size_t m_z_size;
unsigned char *m_z_buffer;
struct z_stream_s *m_inflate;
+
+ DECLARE_NO_COPY_CLASS(wxZlibInputStream)
};
class WXDLLEXPORT wxZlibOutputStream: public wxFilterOutputStream {
public:
- wxZlibOutputStream(wxOutputStream& stream);
+ wxZlibOutputStream(wxOutputStream& stream, int level = -1);
virtual ~wxZlibOutputStream();
void Sync();
size_t m_z_size;
unsigned char *m_z_buffer;
struct z_stream_s *m_deflate;
+
+ DECLARE_NO_COPY_CLASS(wxZlibOutputStream)
};
#endif
+ // wxUSE_ZLIB && wxUSE_STREAMS
#endif
+ // _WX_WXZSTREAM_H__
+