]>
Commit | Line | Data |
---|---|---|
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 | ||
27 | Initializes 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 | 29 | buffer, 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 | |
35 | Destructor. | |
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 | 63 | If {\it data} is NULL, then it will initialize a new empty buffer which will |
2bf8e4eb | 64 | grow if required. |
b36f57c2 GL |
65 | |
66 | \wxheading{Warning} | |
67 | ||
68 | If the buffer is created, it will be destroyed at the destruction of the | |
69 | stream. | |
70 | ||
71 | \membersection{wxMemoryOutputStream::\destruct{wxMemoryOutputStream}} | |
72 | ||
73 | \func{}{\destruct{wxMemoryOutputStream}}{\void} | |
74 | ||
75 | Destructor. | |
aed0ed3c | 76 | |
f439844b GL |
77 | \membersection{wxMemoryOutputStream::CopyTo} |
78 | ||
79 | \constfunc{size\_t}{CopyTo}{\param{char *}{buffer}, \param{size\_t }{len}} | |
80 | ||
81 | CopyTo allowed you to transfer data from the internal buffer of | |
605d715d | 82 | wxMemoryOutputStream to an external buffer. {\it len} specifies the size of |
f439844b GL |
83 | the buffer. |
84 | ||
85 | \wxheading{Returned value} | |
86 | ||
87 | CopyTo returns the number of bytes copied to the buffer. Generally it is either | |
88 | len or the size of the stream buffer. | |
22d6efa8 | 89 |