X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/375abe3dac3d7816738ccd1ab495d9a0441550d4..57fbe23f68f9ef92b8ef7e26bd06b399b53e33b2:/include/wx/sckstrm.h diff --git a/include/wx/sckstrm.h b/include/wx/sckstrm.h index 57484b17fc..b6a060d298 100644 --- a/include/wx/sckstrm.h +++ b/include/wx/sckstrm.h @@ -11,11 +11,14 @@ #ifndef __SCK_STREAM_H__ #define __SCK_STREAM_H__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface #endif #include "wx/stream.h" + +#if wxUSE_SOCKETS && wxUSE_STREAMS + #include "wx/socket.h" class WXDLLEXPORT wxSocketOutputStream : public wxOutputStream @@ -24,16 +27,17 @@ class WXDLLEXPORT wxSocketOutputStream : public wxOutputStream wxSocketOutputStream(wxSocketBase& s); ~wxSocketOutputStream(); - wxOutputStream& Write(const void *buffer, size_t size); - off_t SeekO( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) + off_t SeekO( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) { return -1; } - off_t TellO() + off_t TellO() const { return -1; } protected: wxSocketBase *m_o_socket; size_t OnSysWrite(const void *buffer, size_t bufsize); + + DECLARE_NO_COPY_CLASS(wxSocketOutputStream) }; class WXDLLEXPORT wxSocketInputStream : public wxInputStream @@ -42,20 +46,21 @@ class WXDLLEXPORT wxSocketInputStream : public wxInputStream wxSocketInputStream(wxSocketBase& s); ~wxSocketInputStream(); - wxInputStream& Read(void *buffer, size_t size); - off_t SeekI( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) + off_t SeekI( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) { return -1; } - off_t TellI() + off_t TellI() const { return -1; } protected: wxSocketBase *m_i_socket; size_t OnSysRead(void *buffer, size_t bufsize); + + DECLARE_NO_COPY_CLASS(wxSocketInputStream) }; class WXDLLEXPORT wxSocketStream : public wxSocketInputStream, - public wxSocketOutputStream + public wxSocketOutputStream { public: wxSocketStream(wxSocketBase& s); @@ -63,3 +68,7 @@ class WXDLLEXPORT wxSocketStream : public wxSocketInputStream, }; #endif + // wxUSE_SOCKETS && wxUSE_STREAMS + +#endif + // __SCK_STREAM_H__