aboutsummaryrefslogtreecommitdiff
path: root/oop1w3/ETer.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-11-09 11:48:12 +0100
committerlonkaars <loek@pipeframe.xyz>2022-11-09 11:48:12 +0100
commitffae2cb77bfb3263146a2de0deedf6528d4df461 (patch)
tree88e4b61087069f8ce5badadbc6264d20b8a051d5 /oop1w3/ETer.h
parentd797758769d033c64babdf77ea6b64262f792b23 (diff)
repository aanpassen voor oop2
Diffstat (limited to 'oop1w3/ETer.h')
-rw-r--r--oop1w3/ETer.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/oop1w3/ETer.h b/oop1w3/ETer.h
new file mode 100644
index 0000000..9f7ac8f
--- /dev/null
+++ b/oop1w3/ETer.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "IBeroep.h"
+#include <string>
+
+class ETer : public IBeroep {
+ public:
+ virtual std::string getNaam() const;
+};
+