24 lines
442 B
C++
24 lines
442 B
C++
#ifndef IDKAART_H
|
|
#define IDKAART_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class KaartSlot;
|
|
|
|
class IdKaart{
|
|
private:
|
|
std::string id;
|
|
std::vector<KaartSlot*> toegang;
|
|
std::string naamEigenaar;
|
|
std::string adresEigenaar;
|
|
public:
|
|
IdKaart(std::string, std::string);
|
|
std::string userId();
|
|
void geefToegang(KaartSlot*);
|
|
void verwijderToegang(KaartSlot*);
|
|
bool heeftToegangTot(KaartSlot*);
|
|
};
|
|
|
|
#endif // IDKAART_H
|