addHour method

void addHour(
  1. double hr
)

add hr to the date

Implementation

void addHour(double hr) {
  _date += (hr / HR_PER_DAY);
}