aboutsummaryrefslogtreecommitdiff
path: root/week08/Exercise6.h
blob: 3a24d6dd90d9b55bfdf7e4be78281edb3377d081 (plain) (blame)
1
2
3
4
5
6
7
class NumberInput {
	int value;

public:
	NumberInput(int min, int max);
	int GetValue();
};