// time.h P. Conrad CISC181 Spring 2005

#ifndef TIME_H
#define TIME_H

#include <iostream>

class Time_C
{
 private:
  int hour;
  int min;
 public:
  Time_C(int h, int m)
    { hour = h; min = m; }
  void print(std::ostream &out) const;
};


std::ostream & operator << (std::ostream & left, const Time_C & right);

#endif






