X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af49c4b8a2d3553e733e71c7dd3911881f4c1a2a..bbc1265c400d44962621a6b2c7c36ccff097207c:/include/wx/zstream.h?ds=inline diff --git a/include/wx/zstream.h b/include/wx/zstream.h index fa3d534fe9..2bbeb2fc52 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -33,6 +33,8 @@ 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 { @@ -49,6 +51,8 @@ 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