Tools.h++ Manual
21-190 104011 Tandem Computers Incorporated
21
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
.