]>
git.saurik.com Git - wxWidgets.git/blob - interface/sckstrm.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxSocketOutputStream
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxSocketOutputStream
13 This class implements an output stream which writes data from
14 a connected socket. Note that this stream is purely sequential
15 and it does not support seeking.
22 class wxSocketOutputStream
: public wxOutputStream
26 Creates a new write-only socket stream using the specified initialized
29 wxSocketOutputStream(wxSocketBase
& s
);
35 @class wxSocketInputStream
38 This class implements an input stream which reads data from
39 a connected socket. Note that this stream is purely sequential
40 and it does not support seeking.
47 class wxSocketInputStream
: public wxInputStream
51 Creates a new read-only socket stream using the specified initialized
54 wxSocketInputStream(wxSocketBase
& s
);