]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/datostrm.tex
fixed another return FALSE in a function returning a pointer (patch 545046)
[wxWidgets.git] / docs / latex / wx / datostrm.tex
CommitLineData
f3845e88
VZ
1\section{\class{wxDataOutputStream}}\label{wxdataoutputstream}
2
3This class provides functions that write binary data types in a
4portable way. Data can be written in either big-endian or litte-endian
5format, little-endian being the default on all architectures.
6
7If you want to write data to text files (or streams) use
8\helpref{wxTextOutputStream}{wxtextoutputstream} instead.
9
10The << operator is overloaded and you can use this class like a standard
11C++ iostream. See \helpref{wxDataInputStream}{wxdatainputstream} for its
12usage and caveats.
13
14See also \helpref{wxDataInputStream}{wxdatainputstream}.
15
16\wxheading{Derived from}
17
18None
19
20\latexignore{\rtfignore{\wxheading{Members}}}
21
22\membersection{wxDataOutputStream::wxDataOutputStream}\label{wxdataoutputstreamconstr}
23
24\func{}{wxDataOutputStream}{\param{wxOutputStream\&}{ stream}}
25
26Constructs a datastream object from an output stream. Only write methods will
27be available.
28
29\wxheading{Parameters}
30
31\docparam{stream}{The output stream.}
32
33\membersection{wxDataOutputStream::\destruct{wxDataOutputStream}}
34
35\func{}{\destruct{wxDataOutputStream}}{\void}
36
37Destroys the wxDataOutputStream object.
38
39\membersection{wxDataOutputStream::BigEndianOrdered}
40
41\func{void}{BigEndianOrdered}{\param{bool}{ be\_order}}
42
43If {\it be\_order} is TRUE, all data will be written in big-endian
44order, e.g. for reading on a Sparc or from Java-Streams (which
45always use big-endian order), otherwise data will be written in
46little-endian order.
47
48\membersection{wxDataOutputStream::Write8}
49
50\func{void}{Write8}{{\param wxUint8 }{i8}}
51
52Writes the single byte {\it i8} to the stream.
53
54\membersection{wxDataOutputStream::Write16}
55
56\func{void}{Write16}{{\param wxUint16 }{i16}}
57
58Writes the 16 bit integer {\it i16} to the stream.
59
60\membersection{wxDataOutputStream::Write32}
61
62\func{void}{Write32}{{\param wxUint32 }{i32}}
63
64Writes the 32 bit integer {\it i32} to the stream.
65
66\membersection{wxDataOutputStream::WriteDouble}
67
68\func{void}{WriteDouble}{{\param double }{f}}
69
70Writes the double {\it f} to the stream using the IEEE format.
71
72\membersection{wxDataOutputStream::WriteString}
73
74\func{void}{WriteString}{{\param const wxString\& }{string}}
75
76Writes {\it string} to the stream. Actually, this method writes the size of
77the string before writing {\it string} itself.
78