Tools.h++ Class Reference

Table Of Contents
Public Operators
virtual RWvostream&
operator<<(const char* s);
Redefined from class RWvostream. Store the character string starting at s to the output
stream in binary. 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 in binary. The wide 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 in binary.
virtual RWvostream&
operator<<(wchar_t wc);
Redefined from class RWvostream. Store the wide char wc to the output stream in binary.
virtual RWvostream&
operator<<(unsigned char c);
Redefined from class RWvostream. Store the unsigned char c to the output stream in
binary.
virtual RWvostream&
operator<<(double d);
Redefined from class RWvostream. Store the double d to the output stream in binary.
virtual RWvostream&
operator<<(float f);
Redefined from class RWvostream. Store the float f to the output stream in binary.
virtual RWvostream&
operator<<(int i);
Redefined from class RWvostream. Store the int i to the output stream in binary.
virtual RWvostream&
operator<<(unsigned int i);
Redefined from class RWvostream. Store the unsigned int i to the output stream in binary.
virtual RWvostream&
operator<<(long l);