Tools.h++ Manual

21-230 104011 Tandem Computers Incorporated
21
virtual RWvostream& operator<<(unsigned char c);
Redefined from class
RWvostream
. Store the unsigned character
c
to the
output stream using the XDR format. Note that
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 the XDR format.
virtual RWvostream& operator<<(float f);
Redefined from class
RWvostream
. Store the float
f
to the output stream using
the XDR format.
virtual RWvostream& operator<<(int i);
Redefined from class
RWvostream
. Store the integer
i
to the output stream
using the XDR format.
virtual RWvostream& operator<<(unsigned int i);
Redefined from class
RWvostream
. Store the unsigned integer
i
to the output
stream using the XDR format.
virtual RWvostream& operator<<(long l);
Redefined from class
RWvostream
. Store the long
l
to the output stream using
the XDR format.
virtual RWvostream& operator<<(unsigned long l);
Redefined from class
RWvostream
. Store the unsigned long
l
to the output
stream using the XDR format.
virtual RWvostream& operator<<(short s);
Redefined from class
RWvostream
. Store the short
s
to the output stream
using the XDR format.
virtual RWvostream& operator<<(unsigned short );
Redefined from class
RWvostream
. Store the unsigned short
s
to the output
stream using the XDR format.
virtual RWvostream& put(char c);
Redefined from class
RWvostream
. Store the character
c
to the output stream
using the XDR format. If the operation fails, it sets the failbit.
virtual RWvostream& put(unsigned char c);
Redefined from class
RWvostream
. Store the unsigned character
c
to the
output stream using the XDR format. If the operation fails, it sets the failbit.