Tools.h++ Class Reference

Table Of Contents
get(unsigned int* v, size_t N);
Redefined from class RWvistream. Get a vector of unsigned ints and store them in the
array beginning at v. If the restore operation stops prematurely, because there are no more
data available on the stream, because an exception is thrown, or for some other reason;
get stores what has already been retrieved from the stream into v, and sets the failbit.
virtual RWvistream&
get(unsigned long* v, size_t N);
Redefined from class RWvistream. Get a vector of unsigned longs and store them in the
array beginning at v. If the restore operation stops prematurely, because there are no more
data available on the stream, because an exception is thrown, or for some other reason;
get stores what has already been retrieved from the stream into v, and sets the failbit.
virtual RWvistream&
getString(char* s, size_t N);
Redefined from class RWvistream. Restores a character string from the input stream and
stores it in the array beginning at s. The function stops reading at the end of the string or
after N-1 characters, whichever comes first. If N-1 characters have been read and the Nth
character is not the string terminator, then the failbit of the stream will be set. In either
case, the string will be terminated with a null byte.
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 N-1 characters have been read
and the Nth character is not the string terminator, then the failbit of the stream will be set.
In either case, the string will be terminated with a null byte.