X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4004775e5a0c2da5453668201a4a984b6543d061..c347101b66e941922bf6f266bf155be4db0be793:/include/wx/sckstrm.h diff --git a/include/wx/sckstrm.h b/include/wx/sckstrm.h index 59e73bd75f..60fced8eb2 100644 --- a/include/wx/sckstrm.h +++ b/include/wx/sckstrm.h @@ -11,10 +11,6 @@ #ifndef __SCK_STREAM_H__ #define __SCK_STREAM_H__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface -#endif - #include "wx/stream.h" #if wxUSE_SOCKETS && wxUSE_STREAMS @@ -25,7 +21,7 @@ class WXDLLIMPEXP_NET wxSocketOutputStream : public wxOutputStream { public: wxSocketOutputStream(wxSocketBase& s); - ~wxSocketOutputStream(); + virtual ~wxSocketOutputStream(); wxFileOffset SeekO( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) { return -1; } @@ -44,7 +40,7 @@ class WXDLLIMPEXP_NET wxSocketInputStream : public wxInputStream { public: wxSocketInputStream(wxSocketBase& s); - ~wxSocketInputStream(); + virtual ~wxSocketInputStream(); wxFileOffset SeekI( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) { return -1; } @@ -64,7 +60,7 @@ class WXDLLIMPEXP_NET wxSocketStream : public wxSocketInputStream, { public: wxSocketStream(wxSocketBase& s); - ~wxSocketStream(); + virtual ~wxSocketStream(); DECLARE_NO_COPY_CLASS(wxSocketStream) };