// L-4 MCS 360 Mon 30 Aug 2010 : time_with_clock.cpp

#include "a_class_clock.h"
#include<iostream>

using namespace std;

int main()
{
   Clock c;

   cout << "The current time is "
        << c << "." << endl;
  
   Clock d;

   d.set_clock(16,52,3);

   bool test_eq = (c == d);

   cout << c << " == " << d << " is "
        << test_eq << endl;

   return 0;
}

