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