]>
Commit | Line | Data |
---|---|---|
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
2 | %% Name: socket.tex | |
3 | %% Purpose: wxSocket docs | |
4 | %% Author: Guillermo Rodriguez Garcia <guille@iies.es> | |
5 | %% Modified by: | |
6 | %% Created: 1999 | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) wxWindows team | |
9 | %% License: wxWindows license | |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
11 | ||
12 | % ----------------------------------------------------------------------------- | |
13 | % wxSocketInputStream | |
14 | % ----------------------------------------------------------------------------- | |
15 | \section{\class{wxSocketInputStream}}\label{wxsocketinputstream} | |
16 | ||
17 | This class implements an input stream which reads data from | |
18 | a connected socket. Note that this stream is purely sequential | |
19 | and it does not support seeking. | |
20 | ||
21 | \wxheading{Derived from} | |
22 | ||
23 | \helpref{wxInputStream}{wxinputstream} | |
24 | ||
25 | \wxheading{Include files} | |
26 | ||
27 | <wx/sckstrm.h> | |
28 | ||
29 | \wxheading{See also} | |
30 | ||
31 | \helpref{wxSocketBase}{wxsocketbase} | |
32 | ||
33 | \latexignore{\rtfignore{\wxheading{Members}}} | |
34 | ||
35 | \membersection{wxSocketInputStream::wxSocketInputStream} | |
36 | ||
37 | \func{}{wxSocketInputStream}{\param{wxSocketBase\&}{ s}} | |
38 | ||
39 | Creates a new read-only socket stream using the specified initialized | |
40 | socket connection. | |
41 | ||
42 | % ----------------------------------------------------------------------------- | |
43 | % wxSocketOutputStream | |
44 | % ----------------------------------------------------------------------------- | |
45 | \section{\class{wxSocketOutputStream}}\label{wxsocketoutputstream} | |
46 | ||
47 | This class implements an output stream which writes data from | |
48 | a connected socket. Note that this stream is purely sequential | |
49 | and it does not support seeking. | |
50 | ||
51 | \wxheading{Derived from} | |
52 | ||
53 | \helpref{wxOutputStream}{wxoutputstream} | |
54 | ||
55 | \wxheading{Include files} | |
56 | ||
57 | <wx/sckstrm.h> | |
58 | ||
59 | \wxheading{See also} | |
60 | ||
61 | \helpref{wxSocketBase}{wxsocketbase} | |
62 | ||
63 | \latexignore{\rtfignore{\wxheading{Members}}} | |
64 | ||
65 | \membersection{wxSocketOutputStream::wxSocketOutputStream} | |
66 | ||
67 | \func{}{wxSocketInputStream}{\param{wxSocketBase\&}{ s}} | |
68 | ||
69 | Creates a new write-only socket stream using the specified initialized | |
70 | socket connection. | |
71 |