]>
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) wxWidgets 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 | \helpref{wxStreamBase}{wxstreambase} | |
25 | ||
26 | \wxheading{Include files} | |
27 | ||
28 | <wx/sckstrm.h> | |
29 | ||
30 | \wxheading{Library} | |
31 | ||
32 | \helpref{wxNet}{librarieslist} | |
33 | ||
34 | \wxheading{See also} | |
35 | ||
36 | \helpref{wxSocketBase}{wxsocketbase} | |
37 | ||
38 | \latexignore{\rtfignore{\wxheading{Members}}} | |
39 | ||
40 | \membersection{wxSocketInputStream::wxSocketInputStream}\label{wxsocketinputstreamctor} | |
41 | ||
42 | \func{}{wxSocketInputStream}{\param{wxSocketBase\&}{ s}} | |
43 | ||
44 | Creates a new read-only socket stream using the specified initialized | |
45 | socket connection. | |
46 | ||
47 | % ----------------------------------------------------------------------------- | |
48 | % wxSocketOutputStream | |
49 | % ----------------------------------------------------------------------------- | |
50 | \section{\class{wxSocketOutputStream}}\label{wxsocketoutputstream} | |
51 | ||
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 | ||
56 | \wxheading{Derived from} | |
57 | ||
58 | \helpref{wxOutputStream}{wxoutputstream}\\ | |
59 | \helpref{wxStreamBase}{wxstreambase} | |
60 | ||
61 | \wxheading{Include files} | |
62 | ||
63 | <wx/sckstrm.h> | |
64 | ||
65 | \wxheading{Library} | |
66 | ||
67 | \helpref{wxNet}{librarieslist} | |
68 | ||
69 | \wxheading{See also} | |
70 | ||
71 | \helpref{wxSocketBase}{wxsocketbase} | |
72 | ||
73 | \latexignore{\rtfignore{\wxheading{Members}}} | |
74 | ||
75 | \membersection{wxSocketOutputStream::wxSocketOutputStream}\label{wxsocketoutputstreamctor} | |
76 | ||
77 | \func{}{wxSocketOutputStream}{\param{wxSocketBase\&}{ s}} | |
78 | ||
79 | Creates a new write-only socket stream using the specified initialized | |
80 | socket connection. | |
81 |