Tools.h++ Manual
104011 Tandem Computers Incorporated 21-157
21
Public member functions
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 –
c
is treated as a character, not a number.
virtual RWvostream& operator<<(wchar_t wc);
Redefined from class
RWvostream
. Store the wide char
wc
to the output
stream using a portable format.
Note –
wc
is treated as a character, not a number.
virtual RWvostream& operator<<(unsigned char c);
Redefined from class
RWvostream
. Store the unsigned char
c
to the output
stream using a portable format.
Note –
c
is treated as a character, not a number.
virtual RWvostream& operator<<(double d);
Redefined from class
RWvostream
. Store the double
d
to the output stream
using a portable format.
virtual RWvostream& operator<<(float f);
Redefined from class
RWvostream
. Store the float
f
to the output stream using
a portable format.
virtual RWvostream& operator<<(int i);
Redefined from class
RWvostream
. Store the int
i
to the output stream using
a portable format.