Tools.h++ Class Reference

Table Of Contents
as a character, not a number.
virtual RWvostream&
operator<<(wchar_t wc);
Redefined from class RWbostream. Store the wchar_t wc to the output stream in binary, using
the appropriate endian representation.
virtual RWvostream&
operator<<(unsigned char c);
Redefined from class RWbostream. 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);
Redefined from class RWbostream. Store the double d to the output stream in binary, using the
appropriate endian representation.
virtual RWvostream&
operator<<(float f);
Redefined from class RWbostream. Store the float f to the output stream in binary, using the
appropriate endian representation.
virtual RWvostream&
operator<<(int i);
Redefined from class RWbostream. Store the int i to the output stream in binary, using the
appropriate endian representation.
virtual RWvostream&
operator<<(unsigned int i);
Redefined from class RWbostream. Store the unsigned int i to the output stream in binary, using
the appropriate endian representation.
virtual RWvostream&
operator<<(long l);
Redefined from class RWbostream. Store the long l to the output stream in binary, using the
appropriate endian representation.
virtual RWvostream&
operator<<(unsigned long l);
Redefined from class RWbostream. Store the unsigned long l to the output stream in binary,
using the appropriate endian representation.
virtual RWvostream&
operator<<(short s);
Redefined from class RWbostream. Store the short s to the output stream in binary, using the
appropriate endian representation.
virtual RWvostream&