Tools.h++ Manual
21-22 104011 Tandem Computers Incorporated
21
virtual RWvistream& getString(wchar_t* ws, size_t
N);
Redefined from class 
RWvistream
. Restores a wide character string from the 
input stream and stores it in the array beginning at 
ws
. The function stops 
reading at the end of the string or after 
N-1 
characters, whichever comes first. 
If the latter, then the failbit of the stream will be set. In either case, the string 
will be terminated with a null byte.
virtual RWvistream& operator>>(char& c);
Redefined from class 
RWvistream
. Get the next 
char 
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
.










