]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/strmmem.tex
Fixes for documentation compilation
[wxWidgets.git] / docs / latex / wx / strmmem.tex
CommitLineData
b36f57c2
GL
1% -----------------------------------------------------------------------------
2% wxMemoryInputStream
3% -----------------------------------------------------------------------------
4\section{\class{wxMemoryInputStream}}\label{wxmeminputstream}
5
6\wxheading{Derived from}
7
8\helpref{wxInputStream}{wxinputstream}
9
954b8ae6
JS
10\wxheading{Include files}
11
12<wx/mstream.h>
13
b36f57c2
GL
14\wxheading{See also}
15
85ec2f26 16\helpref{wxStreamBuffer}{wxstreambuffer}, \helpref{wxMemoryOutputStream}{wxmemoutputstream}
b36f57c2 17
b36f57c2
GL
18% ----------
19% Members
20% ----------
21\latexignore{\rtfignore{\wxheading{Members}}}
22
23\membersection{wxMemoryInputStream::wxMemoryInputStream}
24
25\func{}{wxMemoryInputStream}{\param{const char *}{ data}, \param{size\_t}{ len}}
26
27Initializes a new read-only memory stream which will use the specified buffer
2bf8e4eb 28{\it data} of length {\it len}. The stream does not take ownership of the
85ec2f26 29buffer, i.e. that it will not delete in its destructor.
b36f57c2
GL
30
31\membersection{wxMemoryInputStream::\destruct{wxMemoryInputStream}}
32
85ec2f26 33\func{}{\destruct{wxMemoryInputStream}}{\void}
b36f57c2
GL
34
35Destructor.
36
37% -----------------------------------------------------------------------------
38% wxMemoryOutputStream
39% -----------------------------------------------------------------------------
40\section{\class{wxMemoryOutputStream}}\label{wxmemoutputstream}
41
42\wxheading{Derived from}
43
44\helpref{wxOutputStream}{wxoutputstream}
45
954b8ae6
JS
46\wxheading{Include files}
47
48<wx/mstream.h>
49
b36f57c2
GL
50\wxheading{See also}
51
2bf8e4eb 52\helpref{wxStreamBuffer}{wxstreambuffer}
b36f57c2 53
b36f57c2
GL
54% ----------
55% Members
56% ----------
57\latexignore{\rtfignore{\wxheading{Members}}}
58
59\membersection{wxMemoryOutputStream::wxMemoryOutputStream}
60
61\func{}{wxMemoryOutputStream}{\param{char *}{ data = NULL}, \param{size\_t}{ length = 0}}
62
605d715d 63If {\it data} is NULL, then it will initialize a new empty buffer which will
2bf8e4eb 64grow if required.
b36f57c2
GL
65
66\wxheading{Warning}
67
68If the buffer is created, it will be destroyed at the destruction of the
69stream.
70
71\membersection{wxMemoryOutputStream::\destruct{wxMemoryOutputStream}}
72
73\func{}{\destruct{wxMemoryOutputStream}}{\void}
74
75Destructor.
aed0ed3c 76
f439844b
GL
77\membersection{wxMemoryOutputStream::CopyTo}
78
79\constfunc{size\_t}{CopyTo}{\param{char *}{buffer}, \param{size\_t }{len}}
80
81CopyTo allowed you to transfer data from the internal buffer of
605d715d 82wxMemoryOutputStream to an external buffer. {\it len} specifies the size of
f439844b
GL
83the buffer.
84
85\wxheading{Returned value}
86
87CopyTo returns the number of bytes copied to the buffer. Generally it is either
88len or the size of the stream buffer.
22d6efa8 89