aboutsummaryrefslogtreecommitdiff
path: root/week08/Exercise6.h
diff options
context:
space:
mode:
Diffstat (limited to 'week08/Exercise6.h')
-rw-r--r--week08/Exercise6.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/week08/Exercise6.h b/week08/Exercise6.h
new file mode 100644
index 0000000..3a24d6d
--- /dev/null
+++ b/week08/Exercise6.h
@@ -0,0 +1,7 @@
+class NumberInput {
+ int value;
+
+public:
+ NumberInput(int min, int max);
+ int GetValue();
+};