Tools.h++ Class Reference

Table Of Contents
operator>>(int& i) = 0;
Get the next int from the input stream and store it in i.
virtual RWvistream&
operator>>(long& l) = 0;
Get the next long from the input stream and store it in l.
virtual RWvistream&
operator>>(short& s) = 0;
Get the next short from the input stream and store it in s.
virtual RWvistream&
operator>>(unsigned char& c) = 0;
Get the next unsigned char from the input stream and store it in c.
virtual RWvistream&
operator>>(unsigned short& s) = 0;
Get the next unsigned short from the input stream and store it in s.
virtual RWvistream&
operator>>(unsigned int& i) = 0;
Get the next unsigned int from the input stream and store it in i.
virtual RWvistream&
operator>>(unsigned long& l) = 0;
Get the next unsigned long from the input stream and store it in l.
operator void*();
Inherited from RWvios.
Public Member Functions
virtual int
get() = 0;
Get and return the next byte from the input stream, returning its value. Returns EOF if
end of file is encountered.
virtual RWvistream&
get(char& c) = 0;
Get the next char from the input stream, returning its value in c.
virtual RWvistream&
get(wchar_t& wc) = 0;
Get the next wchar_t from the input stream, returning its value in wc.