Tools.h++ Class Reference

Table Of Contents
RWBoolean
operator<(const RWTime& t1, const RWTime& t2);
Returns TRUE if t1 is less than t2.
RWBoolean
operator<=(const RWTime& t1, const RWTime& t2);
Returns TRUE if t1 is less than or equal to t2.
RWBoolean
operator>(const RWTime& t1, const RWTime& t2);
Returns TRUE if t1 is greater than t2.
RWBoolean
operator>=(const RWTime& t1, const RWTime& t2);
Returns TRUE if t1 is greater than or equal to t2.
RWBoolean
operator==(const RWTime& t1, const RWTime& t2);
Returns TRUE if t1 is equal to t2.
RWBoolean
operator!=(const RWTime& t1, const RWTime& t2);
Returns TRUE if t1 is not equal to t2.
ostream&
operator<<(ostream& s, const RWTime& t);
Outputs the time t on ostream s, according to the locale imbued in the stream (see class
RWLocale), or by RWLocale::global() if none.
RWvostream&
operator<<(RWvostream&, const RWTime& t);
RWFile&
operator<<(RWFile&, const RWTime& t);
Saves RWTime t to a virtual stream or RWFile, respectively.
RWvistream&
operator>>(RWvistream&, RWTime& t);
RWFile&
operator>>(RWFile&, RWTime& t);
Restores an RWTime into t from a virtual stream or RWFile, respectively, replacing the
previous contents of t.