X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d7cb14cec900098b866f58804e5f6e899cb158ea..86e7822245592f36cd04022c15690b226494cb65:/docs/latex/wx/txtstrm.tex diff --git a/docs/latex/wx/txtstrm.tex b/docs/latex/wx/txtstrm.tex index fec3780387..559209c182 100644 --- a/docs/latex/wx/txtstrm.tex +++ b/docs/latex/wx/txtstrm.tex @@ -91,14 +91,14 @@ $\backslash$n or $\backslash$r$\backslash$n or $\backslash$r. This class provides functions that write text datas using an output stream. So, you can write \it{text} floats, integers. -For example: +You can also simulate the C++ cout class: \begin{verbatim} - wxFileOutputStream output( "mytext.txt" ); - wxTextOutputStream text( output ); + wxFFileOutputStream output( stderr ); + wxTextOutputStream cout( output ); - output << "This is a text line\n"; - output << 1234; - output << 1.23456; + cout << "This is a text line" << endl; + cout << 1234; + cout << 1.23456; \end{verbatim} The wxTextOutputStream writes text files (or streams) on DOS, Macintosh @@ -153,3 +153,4 @@ Writes the double {\it f} to the stream using the IEEE format. Writes {\it string} as a line. Depending on the operating system, it adds $\backslash$n or $\backslash$r$\backslash$n. +