01: /****************************************************************************
02: ** COPYRIGHT (C):    1998 Cay S. Horstmann. All Rights Reserved.
03: ** PROJECT:          Computing Concepts with C++
04: ** FILE:             time2.cpp
05: ** NOTE TO STUDENTS: This file has been edited to be compatible with older
06: ** compilers. If your compiler fully supports the ANSI/ISO C++
07: ** standard, remove the line #include "ccc_ansi.cpp". You can also remove
08: ** the lines #ifndef CCC_ANSI_H and #endif
09: ****************************************************************************/
10: 
11:
12:
13: 
14: #include <iostream>
15: 
16: using namespace std;
17: 
18:
19: 
20: #include "ccc_time.cpp"
21: 
22: int main()
23: {  
24:    Time now;
25:    Time day_end(23, 59, 59);
26:    long seconds_left = day_end.seconds_from(now);
27: 
28:    cout << "There are "
29:       << seconds_left
30:       << " seconds left in this day.\n";
31: 
32:    return 0;
33: }