diff options
Diffstat (limited to 'oop1w3/IBeroep.h')
-rw-r--r-- | oop1w3/IBeroep.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/oop1w3/IBeroep.h b/oop1w3/IBeroep.h new file mode 100644 index 0000000..8812010 --- /dev/null +++ b/oop1w3/IBeroep.h @@ -0,0 +1,13 @@ +#pragma once
+
+#include <string>
+
+class IBeroep
+{
+public:
+ IBeroep() {}
+ virtual ~IBeroep() {}
+
+public:
+ virtual std::string getNaam() const = 0;
+};
|