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:    #include "ccc_ansi.cpp"
12:    #ifndef CCC_ANSI_H
13: 
14: #include <iostream>
15: 
16: using namespace std;
17: 
18:    #endif
19: 
20: #include "ccc_time.cpp"
21: 
22: int main()
23: {  Time now;
24:    Time day_end(23, 59, 59);
25:    long seconds_left = day_end.seconds_from(now);
26: 
27:    cout << "There are "
28:       << seconds_left
29:       << " seconds left in this day.\n";
30: 
31:    return 0;
32: }