aboutsummaryrefslogtreecommitdiff
path: root/week10/Exercise04/Time12.h
blob: 24669e6f5602fddf00090a751805b98082c6e942 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
#include "Time24.h"

class Time12 : Time24 {
	bool pm;
public:
	Time12(unsigned hours, unsigned minutes, bool pm);
	void Print12();
};