Tools.h++ Manual

104011 Tandem Computers Incorporated 21-225
21
virtual RWvistream& get(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.
virtual RWvistream& get(char* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of characters from the XDR
input stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(unsigned char* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of unsigned characters from
the XDR input stream and stores them in
v
. If the operation fails, it sets the
failbit.
virtual RWvistream& get(double* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of doubles from the XDR
input stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(float* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of floats from the XDR input
stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(int* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of integers from the XDR
input stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(unsigned int* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of unsigned integers from the
XDR input stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(long* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of longs from the XDR input
stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(unsigned long* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of unsigned longs from the
XDR input stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(short* v, size_t N);
Redefined from class
RWvistream
. Gets a vector of shorts from the XDR input
stream and stores them in
v
. If the operation fails, it sets the failbit.
virtual RWvistream& get(unsigned short* v, size_t N)
;
Redefined from class
RWvistream
. Gets a vector of unsigned shorts from the
XDR input stream and stores them in
v
. If the operation fails, it sets the failbit.