]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/inputstr.tex
Added dcbase target to various makefiles
[wxWidgets.git] / docs / latex / wx / inputstr.tex
CommitLineData
e2a6f233
JS
1% -----------------------------------------------------------------------------
2% wxInputStream
3% -----------------------------------------------------------------------------
4\section{\class{wxInputStream}}\label{wxinputstream}
5
6\wxheading{Derived from}
7
8\helpref{wxStreamBase}{wxstreambase}
9
954b8ae6
JS
10\wxheading{Include files}
11
12<wx/stream.h>
13
e2a6f233
JS
14\wxheading{See also}
15
16\helpref{wxStreamBuffer}{wxstreambuffer}
17
18% -----------
19% ctor & dtor
20% -----------
21\membersection{wxInputStream::wxInputStream}
22
23\func{}{wxInputStream}{\void}
24
25Creates a dummy input stream.
26
27\func{}{wxInputStream}{\param{wxStreamBuffer *}{sbuf}}
28
29Creates an input stream using the specified stream buffer \it{sbuf}. This
30stream buffer can point to another stream.
31
32\membersection{wxInputStream::\destruct{wxInputStream}}
33
34\func{}{\destruct{wxInputStream}}{\void}
35
36Destructor.
37
e2a6f233
JS
38\membersection{wxInputStream::GetC}
39
40\func{char}{GetC}{\void}
41
42Returns the first character in the input queue and removes it.
43
40b480c3
JS
44\membersection{wxInputStream::InputStreamBuffer}
45
46\func{wxStreamBuffer*}{InputStreamBuffer}{\void}
47
48Returns the stream buffer associated with the input stream.
49
50\membersection{wxInputStream::LastRead}
51
52\constfunc{size\_t}{LastRead}{\void}
53
54Returns the last number of bytes read.
55
56\membersection{wxInputStream::Peek}
57
58\func{char}{Peek}{\void}
59
60Returns the first character in the input queue without removing it.
61
e2a6f233
JS
62\membersection{wxInputStream::Read}
63
40b480c3 64\func{wxInputStream\&}{Read}{\param{void *}{buffer}, \param{size\_t}{ size}}
e2a6f233
JS
65
66Reads the specified amount of bytes and stores the data in \it{buffer}.
67
da3aea64
GL
68\wxheading{Warning}
69
70The buffer absolutely needs to have at least the specified size.
71
72\wxheading{Return value}
e2a6f233
JS
73
74This function returns a reference on the current object, so the user can test
75any states of the stream right away.
76
294e9a7a 77\func{wxInputStream\&}{Read}{\param{wxOutputStream\&}{ stream\_out}}
e2a6f233
JS
78
79Reads data from the input queue and stores it in the specified output stream.
80The data is read until an error is raised by one of the two streams.
81
da3aea64
GL
82\wxheading{Return value}
83
84This function returns a reference on the current object, so the user can test
85any states of the stream right away.
86
e2a6f233
JS
87\membersection{wxInputStream::SeekI}
88
40b480c3 89\func{off\_t}{SeekI}{\param{off\_t}{ pos}, \param{wxSeekMode}{ mode = wxFromStart}}
e2a6f233
JS
90
91Changes the stream current position.
92
93\membersection{wxInputStream::TellI}
94
40b480c3 95\constfunc{off\_t}{TellI}{\void}
e2a6f233
JS
96
97Returns the current stream position.
98