aboutsummaryrefslogtreecommitdiff
path: root/oop1w1/Opteller.h
diff options
context:
space:
mode:
Diffstat (limited to 'oop1w1/Opteller.h')
-rw-r--r--oop1w1/Opteller.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/oop1w1/Opteller.h b/oop1w1/Opteller.h
new file mode 100644
index 0000000..2f21d79
--- /dev/null
+++ b/oop1w1/Opteller.h
@@ -0,0 +1,12 @@
+#pragma once
+
+class Opteller {
+ private:
+ int som;
+
+ public:
+ void initialiseer();
+ void voegWaardeToe(int waarde);
+ int geefSom();
+};
+