Tools.h++ Manual

104011 Tandem Computers Incorporated 21-231
21
virtual RWvostream& put(wchar_t wc);
Redefined from class
RWvostream
. Store the wide character
wc
to the output
stream using the XDR format. If the operation fails, it sets the failbit.
virtual RWvostream& put(const char* p, size_t N);
Redefined from class
RWvostream
. Store the vector of characters starting at
p
to the output stream using the XDR format. If the operation fails, it sets the
failbit.
virtual RWvostream& put(const wchar_t* p, size_t N);
Redefined from class
RWvostream
. Store the vector of wide characters starting
at
p
to the output stream using the XDR format. If the operation fails, it sets the
failbit.
virtual RWvostream& put(const short* p, size_t N);
Redefined from class
RWvostream
. Store the vector of shorts starting at
p
to
the output stream using the XDR format. If the operation fails, it sets the failbit.
virtual RWvostream& put(const unsigned short* p,
size_t N);
Redefined from class
RWvostream
. Store the vector of unsigned shorts starting
at
p
to the output stream using the XDR format. If the operation fails, it sets the
failbit.
virtual RWvostream& put(const int* p, size_t N);
Redefined from class
RWvostream
. Store the vector of integers starting at
p
to
the output stream using the XDR format. If the operation fails, it sets the failbit.
virtual RWvostream& put(const unsigned int* p,
size_t N);
Redefined from class
RWvostream
. Store the vector of unsigned integers
starting at
p
to the output stream using the XDR format. If the operation fails,
it sets the failbit.
virtual RWvostream& put(const long* p, size_t N);
Redefined from class
RWvostream
. Store the vector of longs starting at
p
to the
output stream using the XDR format. If the operation fails, it sets the failbit.
virtual RWvostream& put(const unsigned long* p,
size_t N);
Redefined from class
RWvostream
. Store the vector of unsigned longs starting
at
p
to the output stream using the XDR format. If the operation fails, it sets the
failbit.