Writes text to a stream, eg numerics are converted to strings for writing. More...
#include <TextStream.h>
Public Member Functions | |
| TextWriter (spl::IStreamPtr strm) | |
| void | Close () |
| void | Flush () |
| void | Write (byte b) |
| void | Write (int8 i) |
| void | Write (int16 i) |
| void | Write (int32 i) |
| void | Write (int64 i) |
| void | Write (uint16 i) |
| void | Write (uint32 i) |
| void | Write (float32 f) |
| void | Write (float64 f) |
| void | Write (Array< char > &buf) |
| void | Write (const String &str) |
| void | WriteFormat (const String fmt,...) |
| void | WriteLine (const String &str) |
| virtual void | ValidateMem () const |
| virtual void | CheckMem () const |
Protected Attributes | |
| spl::IStreamPtr | m_strm |
Writes text to a stream, eg numerics are converted to strings for writing.
Definition at line 45 of file TextStream.h.