Tools.h++ Class Reference

Table Of Contents
operator<<(const wchar_t* ws) = 0;
Store the wide character string starting at ws to the output stream. The character string is
expected to be null terminated.
virtual RWvostream&
operator<<(char c) = 0;
Store the char c to the output stream. Note that c is treated as a character, not a number.
virtual RWvostream&
operator<<(wchar_t wc) = 0;
Store the wchar_t wc to the output stream. Note that wc is treated as a character, not a
number.
virtual RWvostream&
operator<<(unsigned char c) = 0;
Store the unsigned char c to the output stream. Note that c is treated as a character, not a
number.
virtual RWvostream&
operator<<(double d) = 0;
Store the double d to the output stream.
virtual RWvostream&
operator<<(float f) = 0;
Store the float f to the output stream.
virtual RWvostream&
operator<<(int i) = 0;
Store the int i to the output stream.
virtual RWvostream&
operator<<(unsigned int i) = 0;
Store the unsigned int i to the output stream.
virtual RWvostream&
operator<<(long l) = 0;
Store the long l to the output stream.
virtual RWvostream&
operator<<(unsigned long l) = 0;
Store the unsigned long l to the output stream.
virtual RWvostream&
operator<<(short s) = 0;
Store the short s to the output stream.