diff options
Diffstat (limited to 'oop1w3/Persoon.h')
-rw-r--r-- | oop1w3/Persoon.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/oop1w3/Persoon.h b/oop1w3/Persoon.h new file mode 100644 index 0000000..32ff651 --- /dev/null +++ b/oop1w3/Persoon.h @@ -0,0 +1,16 @@ +#pragma once + +#include "IBeroep.h" +#include <string> + +class Persoon { + private: + IBeroep* _beroep; + + public: + virtual void setBeroep(IBeroep* beroep); + virtual std::string getBeroep(); + Persoon(); + virtual ~Persoon(); +}; + |