X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/22d6efa851642c6a69174278fc50f712f41e2271..a14e57f9f7d2e2b3b5d5aa7bf323efe907485408:/docs/latex/wx/txtstrm.tex diff --git a/docs/latex/wx/txtstrm.tex b/docs/latex/wx/txtstrm.tex index b162cee031..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