Tools.h++ Class Reference

Table Of Contents
}
Program output:
5
22.1
-0.05
"A string with\ttabs,\nnewlines and a \x07 bell."
Public Constructors
RWpostream(streambuf* s);
Initialize an RWpostream from the streambuf s.
RWpostream(ostream& str);
Initialize an RWpostream from the streambuf associated with the output stream str.
Public Destructor
virtual ~RWvostream();
This virtual destructor allows specializing classes to deallocate any resources that they
may have allocated.
Public Operators
virtual RWvostream&
operator<<(const char* s);
Redefined from class RWvostream. Store the character string starting at s to the output
stream using a portable format. The character string is expected to be null terminated.
virtual RWvostream&
operator<<(const wchar_t* ws);
Redefined from class RWvostream. Store the wide character string starting at ws to the
output stream using a portable format. The character string is expected to be null
terminated.
virtual RWvostream&
operator<<(char c);
Redefined from class RWvostream. Store the char c to the output stream using a portable
format. Note that c is treated as a character, not a number. This member attempts to
preserve the symbolic characters values transmitted over the stream
virtual RWvostream&
operator<<(wchar_t wc);