aboutsummaryrefslogtreecommitdiff
path: root/oop1w3/TIer.h
blob: 35147e48d1ce8a0d7cec92ffa50915acdaea3428 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "IBeroep.h"
#include <string>

class TIer : public IBeroep {
	public:
		virtual std::string getNaam() const;
};