blob: df4a3f2efede5f111593af4af285fd4b40635bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <string>
class Persoon {
public:
Persoon(std::string naam);
const std::string& getNaam() const;
int getLeeftijd() const;
void setLeeftijd(int leeftijd);
bool operator < (const Persoon& other) const;
private:
std::string naam;
int leeftijd;
};
|