A friendly interface for writing text data to a stream.
Definition textwriter.h:20
void WriteLines(const Util::Array< Util::String > &lines)
write a number of lines, separated by new-lines
Definition textwriter.cc:80
void WriteChar(unsigned char c)
write a single character
Definition textwriter.cc:38
TextWriter()
constructor
Definition textwriter.cc:18
__DeclareClass(TextWriter)
void WriteString(const Util::String &str)
write a string
Definition textwriter.cc:47
virtual ~TextWriter()
destructor
Definition textwriter.cc:26
void WriteFormatted(const char *fmtString,...)
write some formatted text
Definition textwriter.cc:56
void WriteLine(const Util::String &line)
write a line of text and append a new-line
Definition textwriter.cc:70