]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/datstrm.tex
More asserts and stuff
[wxWidgets.git] / docs / latex / wx / datstrm.tex
index fffa327d041bfee305f818ff7cbda9cff62e3e4d..5aa3577443dd782b99b083547e10989e99851b6d 100644 (file)
@@ -1,15 +1,13 @@
+% ----------------------------------------------------------------------------
+% wxDataInputStream
+% ----------------------------------------------------------------------------
 \section{\class{wxDataInputStream}}\label{wxdatainputstream}
 
 This class provides functions that read data types in a
 \section{\class{wxDataInputStream}}\label{wxdatainputstream}
 
 This class provides functions that read data types in a
-portable way. So, a file written by an Intel processor can be read by a
+portable way. It can be forced to read in big-endian order or 
+little-endian order. So, a file written by an Intel processor can be read by a
 Sparc or anything else.
 
 Sparc or anything else.
 
-\wxheading{Derived from}
-
-\helpref{wxFilterInputStream}{wxfilterinputstream}\\
-\helpref{wxInputStream}{wxinputstream}\\
-\helpref{wxStreamBase}{wxstreambase}
-
 \wxheading{Include files}
 
 <wx/datstrm.h>
 \wxheading{Include files}
 
 <wx/datstrm.h>
@@ -65,16 +63,15 @@ Reads a string from a stream. Actually, this function first reads a long integer
 specifying the length of the string (without the last null character) and then
 reads the string.
 
 specifying the length of the string (without the last null character) and then
 reads the string.
 
-\membersection{wxDataInputStream::ReadLine}
-
-\func{wxString}{wxDataInputStream::ReadLine}{\void}
-
-Reads a line from the stream. A line is a string which ends with \\n or \\r\\n.
+% ----------------------------------------------------------------------------
+% wxDataOutputStream
+% ----------------------------------------------------------------------------
 
 \section{\class{wxDataOutputStream}}\label{wxdataoutputstream}
 
 This class provides functions that write data types in a
 
 \section{\class{wxDataOutputStream}}\label{wxdataoutputstream}
 
 This class provides functions that write data types in a
-portable way. So, a file written by an Intel processor can be read by a
+portable way. It can be forced to read in big-endian order or 
+little-endian order. So, a file written by an Intel processor can be read by a
 Sparc or anything else.
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 Sparc or anything else.
 
 \latexignore{\rtfignore{\wxheading{Members}}}
@@ -126,11 +123,3 @@ Writes the double {\it f} to the stream using the IEEE format.
 
 Writes {\it string} to the stream. Actually, this method writes the size of
 the string before writing {\it string} itself.
 
 Writes {\it string} to the stream. Actually, this method writes the size of
 the string before writing {\it string} itself.
-
-\membersection{wxDataOutputStream::WriteLine}
-
-\func{void}{wxDataOutputStream::WriteLine}{{\param const wxString\& }{string}}
-
-Writes {\it string} as a line. Depending on the operating system, it adds
-$\backslash$n or $\backslash$r$\backslash$n.
-