Tools.h++ Manual

21-154 104011 Tandem Computers Incorporated
21
latter, then the failbit of the stream will be set. In either case, the string will be
terminated with a null byte. If the input stream has been corrupted, then an
exception of type
RWExternalErr
will be thrown.
virtual RWvistream& operator>>(char& c);
Redefined from class
RWvistream
. Get the next character from the input
stream and store it in
c
.
virtual RWvistream& operator>>(double& d);
Redefined from class
RWvistream
. Get the next double from the input stream
and store it in
d
.
virtual RWvistream& operator>>(float& f);
Redefined from class
RWvistream
. Get the next float from the input stream
and store it in
f
.
virtual RWvistream& operator>>(int& i);
Redefined from class
RWvistream
. Get the next int from the input stream and
store it in
i
.
virtual RWvistream& operator>>(long& l);
Redefined from class
RWvistream
. Get the next long from the input stream
and store it in
l
.
virtual RWvistream& operator>>(short& s);
Redefined from class
RWvistream
. Get the next short from the input stream
and store it in
s
.
virtual RWvistream& operator>>(unsigned char& c);
Redefined from class
RWvistream
. Get the next unsigned char from the input
stream and store it in
c
.
virtual RWvistream& operator>>(unsigned short& s);
Redefined from class
RWvistream
. Get the next unsigned short from the input
stream and store it in
s
.
virtual RWvistream& operator>>(unsigned int& i);
Redefined from class
RWvistream
. Get the next unsigned int from the input
stream and store it in
i
.
virtual RWvistream& operator>>(unsigned long& l);
Redefined from class
RWvistream
. Get the next unsigned long from the input
stream and store it in
l
.