X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4259a48e0b5799e015061f8e649ab54ad2d9dc7f..cba5a276e4821a0ae7d1e7a435d6aab38baa0a9f:/include/wx/zstream.h?ds=sidebyside diff --git a/include/wx/zstream.h b/include/wx/zstream.h index cab4f71e07..2bbeb2fc52 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -11,11 +11,15 @@ #ifndef _WX_WXZSTREAM_H__ #define _WX_WXZSTREAM_H__ -#ifdef __GNUG__ -#pragma interface +#if defined(__GNUG__) && !defined(__APPLE__) +#pragma interface "zstream.h" #endif -#include +#include "wx/defs.h" + +#if wxUSE_ZLIB && wxUSE_STREAMS + +#include "wx/stream.h" class WXDLLEXPORT wxZlibInputStream: public wxFilterInputStream { public: @@ -29,11 +33,13 @@ class WXDLLEXPORT wxZlibInputStream: public wxFilterInputStream { 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(); @@ -45,6 +51,13 @@ class WXDLLEXPORT wxZlibOutputStream: public wxFilterOutputStream { 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__ +