]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/sckstrm.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxSocketOutputStream
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
9 @class wxSocketOutputStream
11 This class implements an output stream which writes data from
12 a connected socket. Note that this stream is purely sequential
13 and it does not support seeking.
16 @category{net,streams}
20 class wxSocketOutputStream
: public wxOutputStream
24 Creates a new write-only socket stream using the specified initialized
27 wxSocketOutputStream(wxSocketBase
& s
);
33 @class wxSocketInputStream
35 This class implements an input stream which reads data from
36 a connected socket. Note that this stream is purely sequential
37 and it does not support seeking.
40 @category{net,streams}
44 class wxSocketInputStream
: public wxInputStream
48 Creates a new read-only socket stream using the specified initialized
51 wxSocketInputStream(wxSocketBase
& s
);