#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
{
public:
wxSocketOutputStream(wxSocketBase& s);
- ~wxSocketOutputStream();
+ virtual ~wxSocketOutputStream();
- off_t SeekO( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
+ wxFileOffset SeekO( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
{ return -1; }
- off_t TellO() const
+ wxFileOffset TellO() const
{ return -1; }
protected:
{
public:
wxSocketInputStream(wxSocketBase& s);
- ~wxSocketInputStream();
+ virtual ~wxSocketInputStream();
- off_t SeekI( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
+ wxFileOffset SeekI( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
{ return -1; }
- off_t TellI() const
+ wxFileOffset TellI() const
{ return -1; }
protected:
{
public:
wxSocketStream(wxSocketBase& s);
- ~wxSocketStream();
+ virtual ~wxSocketStream();
DECLARE_NO_COPY_CLASS(wxSocketStream)
};