Tools.h++ Manual

21-226 104011 Tandem Computers Incorporated
21
virtual RWvistream& get(wchar_t* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of wide characters from the
XDR input stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& getString(char* s, size_t
maxlen);
Redefined from class
RWvistream
. Restores a character string from the XDR
input stream and stores them in the array starting at
s
. The function stops
reading at the end of the string or after
maxlen-1
characters, whichever comes
first. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(char& c );
Redefined from class
RWvistream
. Gets the next character from the XDR input
stream and stores it in
c
. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(double& d);
Redefined from class
RWvistream
. Gets the next double from the XDR input
stream and stores it in
d
. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(float& f);
Redefined from class
RWvistream
. Gets the next float from the XDR input
stream and stores it in
f
. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(int& i);
Redefined from class
RWvistream
. Gets the next integer from the XDR input
stream and stores it in
i
. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(long& l);
Redefined from class
RWvistream
. Gets the next long from the XDR input
stream and stores it in
l
. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(short& s);
Redefined from class
RWvistream
. Gets the next short from the XDR input
stream and stores it in
s
. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(wchar_t& wc);
Redefined from class
RWvistream
. Gets the next wide character from the XDR
input stream and stores it in
wc
. If the operation fails, it sets the failbit.
virtual RWvistream& operator>>(unsigned char& c);
Redefined from class
RWvistream
. Gets the next unsigned character from the
XDR input stream and stores it in
c
. If the operation fails, it sets the failbit.