]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/datstrm.tex
New drawing test code.
[wxWidgets.git] / docs / latex / wx / datstrm.tex
index 3c0481935d58118665a7f471962a0d22a09113f7..c33104b400d5366de9f29da46fa3ecc2ea3beefc 100644 (file)
@@ -1,14 +1,15 @@
+% ----------------------------------------------------------------------------
+% wxDataInputStream
+% ----------------------------------------------------------------------------
 \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
 Sparc or anything else.
 
-\wxheading{Derived from}
+\wxheading{Include files}
 
-\helpref{wxFilterInputStream}{wxfilterinputstream}\\
-\helpref{wxInputStream}{wxinputstream}\\
-\helpref{wxStreamBase}{wxstreambase}
+<wx/datstrm.h>
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 
@@ -61,11 +62,9 @@ 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.
 
-\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}
 
@@ -122,11 +121,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.
-
-\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.
-