aboutsummaryrefslogtreecommitdiff
path: root/week10/Exercise06/Grade.h
blob: 8ebf3a737a73a58ef395373691d317b127b2627d (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once

class Grade {
protected:
	unsigned numericValue;

public:
	Grade(unsigned numericValue);
};