// timeOfDay.h military time 
// Donald Duck (not my real name)
// declaration of a class for representing time of day
// class name is TimeOfDay_C

#ifndef TIMEOFDAY_H
#define TIMEOFDAY_H

class TimeOfDay_C {

 public:

  TimeOfDay_C(int hours2, int minutes2) ;

  int getHours() const  ;
  int getMinutes() const  ;

  bool setHours(int hours2);
  bool setMinutes(int minutes2);

  // do we need a print member function?
  // wasn't asked for, but I'm just sayin'...

 private:

  // DON'T DO: int hours = 0; // ILLEGAL !!!
  // Initialization should be done in the constructor

  int hours;
  int minutes;



};

#endif // TIMEOFDAY_H 
