aboutsummaryrefslogtreecommitdiff
path: root/week-3/IBeroep.h
blob: 881201077a6db5c10645feb3f38891e78356b369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <string>

class IBeroep
{
public:
                        IBeroep()   {}
    virtual            ~IBeroep()   {}

public:
    virtual std::string getNaam() const = 0;
};