Qt-Gebouw/idkaart.h

24 lines
442 B
C
Raw Normal View History

2022-04-06 19:49:19 +00:00
#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