aboutsummaryrefslogtreecommitdiff
path: root/week-3/ETer.h
diff options
context:
space:
mode:
Diffstat (limited to 'week-3/ETer.h')
-rw-r--r--week-3/ETer.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/week-3/ETer.h b/week-3/ETer.h
new file mode 100644
index 0000000..9f7ac8f
--- /dev/null
+++ b/week-3/ETer.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "IBeroep.h"
+#include <string>
+
+class ETer : public IBeroep {
+ public:
+ virtual std::string getNaam() const;
+};
+