X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7f555861b7e50f335c7b929bb76be38e9ebd69c5..bbc1265c400d44962621a6b2c7c36ccff097207c:/include/wx/zstream.h?ds=inline diff --git a/include/wx/zstream.h b/include/wx/zstream.h index 3f2de88380..2bbeb2fc52 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -11,49 +11,53 @@ #ifndef _WX_WXZSTREAM_H__ #define _WX_WXZSTREAM_H__ -#ifdef __GNUG__ -#pragma interface +#if defined(__GNUG__) && !defined(__APPLE__) +#pragma interface "zstream.h" #endif -#include -#include "../zlib/zlib.h" // don't change this, Robert +#include "wx/defs.h" -class wxZlibInputStream: public wxFilterInputStream { +#if wxUSE_ZLIB && wxUSE_STREAMS + +#include "wx/stream.h" + +class WXDLLEXPORT wxZlibInputStream: public wxFilterInputStream { public: wxZlibInputStream(wxInputStream& stream); virtual ~wxZlibInputStream(); - bool Eof() const; - protected: - size_t DoRead(void *buffer, size_t size); - off_t DoSeekInput(off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode)) { return wxInvalidOffset; } - off_t DoTellInput() const { return wxInvalidOffset; } + size_t OnSysRead(void *buffer, size_t size); protected: size_t m_z_size; unsigned char *m_z_buffer; - struct z_stream_s m_inflate; + struct z_stream_s *m_inflate; + + DECLARE_NO_COPY_CLASS(wxZlibInputStream) }; -class wxZlibOutputStream: public wxFilterOutputStream { +class WXDLLEXPORT wxZlibOutputStream: public wxFilterOutputStream { public: - wxZlibOutputStream(wxOutputStream& stream); + wxZlibOutputStream(wxOutputStream& stream, int level = -1); virtual ~wxZlibOutputStream(); void Sync(); - bool Bad() const; - protected: - size_t DoWrite(const void *buffer, size_t size); - off_t DoSeekOutput(off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode)) { return wxInvalidOffset; } - off_t DoTellOutput() const { return wxInvalidOffset; } + size_t OnSysWrite(const void *buffer, size_t size); protected: size_t m_z_size; unsigned char *m_z_buffer; - struct z_stream_s m_deflate; + struct z_stream_s *m_deflate; + + DECLARE_NO_COPY_CLASS(wxZlibOutputStream) }; #endif + // wxUSE_ZLIB && wxUSE_STREAMS + +#endif + // _WX_WXZSTREAM_H__ +