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