aboutsummaryrefslogtreecommitdiff
path: root/week10/Exercise04/Time12.cpp
blob: 3d1d68189b6444e7252321b0b73f3016f80a03f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "Time12.h"
#include <iostream>

Time12::Time12(unsigned hours, unsigned minutes, bool pm) : Time24(hours, minutes) {
	this->pm = pm;
}

void Time12::Print12() {
	std::cout << hours << ":" << minutes << " " << (pm ? "PM" : "AM");
}