]>
Commit | Line | Data |
---|---|---|
105521d1 GRG |
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 | |
f6bcfd97 | 9 | %% License: wxWindows license |
105521d1 GRG |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
11 | ||
631f1bfe JS |
12 | % ----------------------------------------------------------------------------- |
13 | % wxSocketInputStream | |
14 | % ----------------------------------------------------------------------------- | |
89c684ef | 15 | \section{\class{wxSocketInputStream}}\label{wxsocketinputstream} |
631f1bfe | 16 | |
105521d1 GRG |
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 | ||
631f1bfe JS |
21 | \wxheading{Derived from} |
22 | ||
105521d1 | 23 | \helpref{wxInputStream}{wxinputstream} |
631f1bfe | 24 | |
954b8ae6 JS |
25 | \wxheading{Include files} |
26 | ||
27 | <wx/sckstrm.h> | |
28 | ||
631f1bfe JS |
29 | \wxheading{See also} |
30 | ||
105521d1 | 31 | \helpref{wxSocketBase}{wxsocketbase} |
631f1bfe JS |
32 | |
33 | \latexignore{\rtfignore{\wxheading{Members}}} | |
34 | ||
35 | \membersection{wxSocketInputStream::wxSocketInputStream} | |
36 | ||
37 | \func{}{wxSocketInputStream}{\param{wxSocketBase\&}{ s}} | |
38 | ||
105521d1 GRG |
39 | Creates a new read-only socket stream using the specified initialized |
40 | socket connection. | |
631f1bfe JS |
41 | |
42 | % ----------------------------------------------------------------------------- | |
43 | % wxSocketOutputStream | |
44 | % ----------------------------------------------------------------------------- | |
89c684ef | 45 | \section{\class{wxSocketOutputStream}}\label{wxsocketoutputstream} |
631f1bfe | 46 | |
105521d1 GRG |
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 | ||
631f1bfe JS |
51 | \wxheading{Derived from} |
52 | ||
105521d1 | 53 | \helpref{wxOutputStream}{wxoutputstream} |
631f1bfe | 54 | |
954b8ae6 JS |
55 | \wxheading{Include files} |
56 | ||
57 | <wx/sckstrm.h> | |
58 | ||
631f1bfe JS |
59 | \wxheading{See also} |
60 | ||
105521d1 | 61 | \helpref{wxSocketBase}{wxsocketbase} |
631f1bfe JS |
62 | |
63 | \latexignore{\rtfignore{\wxheading{Members}}} | |
64 | ||
65 | \membersection{wxSocketOutputStream::wxSocketOutputStream} | |
66 | ||
67 | \func{}{wxSocketInputStream}{\param{wxSocketBase\&}{ s}} | |
68 | ||
105521d1 | 69 | Creates a new write-only socket stream using the specified initialized |
631f1bfe JS |
70 | socket connection. |
71 |