Time class Version 1.1 DOCUMENTATION NEW IN THIS VERSION: Nothing that affects the users of the class. (Long methods were moved out of the class declaration and declared as inline as appropriate.) Each Time object represents a time on a 24-hour clock (0:00 to 23:59). Methods: void initialize() Sets receiver to 99:99. void read(istream & in) Reads receiver from in the format h:mm or hh:mm, where each h and m stands for a single digit. No error-checking. void print(ostream & out) const Prints receiver to out in the format described for read. double minus(const Time & t2) const Computes the difference, in hours, between the receiver and t2. The difference is positive if the receiver occurs after t2. In other words, the difference is computed as "t1 - t2". Implementation notes: Each time is stored as a pair of integers (hours, minutes) by using a class. The data is private. Long methods are implemented outside the class declaration and declared as inline as appropriate.