]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/sckstrm.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxSocketOutputStream
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxSocketOutputStream
12 This class implements an output stream which writes data from
13 a connected socket. Note that this stream is purely sequential
14 and it does not support seeking.
17 @category{net,streams}
21 class wxSocketOutputStream
: public wxOutputStream
25 Creates a new write-only socket stream using the specified initialized
28 wxSocketOutputStream(wxSocketBase
& s
);
34 @class wxSocketInputStream
36 This class implements an input stream which reads data from
37 a connected socket. Note that this stream is purely sequential
38 and it does not support seeking.
41 @category{net,streams}
45 class wxSocketInputStream
: public wxInputStream
49 Creates a new read-only socket stream using the specified initialized
52 wxSocketInputStream(wxSocketBase
& s
);