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:
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:
};
class WXDLLEXPORT wxSocketStream : public wxSocketInputStream,
- public wxSocketOutputStream
+ public wxSocketOutputStream
{
public:
wxSocketStream(wxSocketBase& s);
// wxUSE_SOCKETS && wxUSE_STREAMS
#endif
- // __SCK_STREAM_H__
\ No newline at end of file
+ // __SCK_STREAM_H__