This class provides functions that write text datas using an output stream. So, you can write text floats, integers.
You can also simulate the C++ cout class:
wxFFileOutputStream output( stderr ); wxTextOutputStream cout( output ); cout << "This is a text line" << endl; cout << 1234; cout << 1.23456;
The wxTextOutputStream writes text files (or streams) on DOS, Macintosh and Unix in their native formats (concerning the line ending).
Include files
<wx/txtstrm.h>
Constructs a text stream object associated to the given output stream.
Parameters
Destroys the wxTextOutputStream object.
Returns the end-of-line mode. One of wxEOL_DOS, wxEOL_MAC and wxEOL_UNIX.
Writes a character to the stream.
Set the end-of-line mode. One of wxEOL_NATIVE, wxEOL_DOS, wxEOL_MAC and wxEOL_UNIX.
Writes the single byte i8 to the stream.
Writes the 16 bit integer i16 to the stream.
Writes the 32 bit integer i32 to the stream.
Writes the double f to the stream using the IEEE format.
Writes string as a line. Depending on the end-of-line mode the end of
line ('n') characters in the string are converted to the correct
line ending terminator.