]>
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$ | |
fc2171bd | 8 | %% Copyright: (c) wxWidgets team |
8795498c | 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 | ||
a7af285d VZ |
29 | \wxheading{Library} |
30 | ||
31 | \helpref{wxNet}{librarieslist} | |
32 | ||
631f1bfe JS |
33 | \wxheading{See also} |
34 | ||
105521d1 | 35 | \helpref{wxSocketBase}{wxsocketbase} |
631f1bfe JS |
36 | |
37 | \latexignore{\rtfignore{\wxheading{Members}}} | |
38 | ||
39275175 | 39 | \membersection{wxSocketInputStream::wxSocketInputStream}\label{wxsocketinputstreamctor} |
631f1bfe JS |
40 | |
41 | \func{}{wxSocketInputStream}{\param{wxSocketBase\&}{ s}} | |
42 | ||
105521d1 GRG |
43 | Creates a new read-only socket stream using the specified initialized |
44 | socket connection. | |
631f1bfe JS |
45 | |
46 | % ----------------------------------------------------------------------------- | |
47 | % wxSocketOutputStream | |
48 | % ----------------------------------------------------------------------------- | |
89c684ef | 49 | \section{\class{wxSocketOutputStream}}\label{wxsocketoutputstream} |
631f1bfe | 50 | |
105521d1 GRG |
51 | This class implements an output stream which writes data from |
52 | a connected socket. Note that this stream is purely sequential | |
53 | and it does not support seeking. | |
54 | ||
631f1bfe JS |
55 | \wxheading{Derived from} |
56 | ||
105521d1 | 57 | \helpref{wxOutputStream}{wxoutputstream} |
631f1bfe | 58 | |
954b8ae6 JS |
59 | \wxheading{Include files} |
60 | ||
61 | <wx/sckstrm.h> | |
62 | ||
a7af285d VZ |
63 | \wxheading{Library} |
64 | ||
65 | \helpref{wxNet}{librarieslist} | |
66 | ||
631f1bfe JS |
67 | \wxheading{See also} |
68 | ||
105521d1 | 69 | \helpref{wxSocketBase}{wxsocketbase} |
631f1bfe JS |
70 | |
71 | \latexignore{\rtfignore{\wxheading{Members}}} | |
72 | ||
39275175 | 73 | \membersection{wxSocketOutputStream::wxSocketOutputStream}\label{wxsocketoutputstreamctor} |
631f1bfe | 74 | |
9a75ba66 | 75 | \func{}{wxSocketOutputStream}{\param{wxSocketBase\&}{ s}} |
631f1bfe | 76 | |
105521d1 | 77 | Creates a new write-only socket stream using the specified initialized |
631f1bfe JS |
78 | socket connection. |
79 |