Qt-Gebouw/kaartslot.cpp

30 lines
477 B
C++
Raw Normal View History

2022-04-06 19:49:19 +00:00
#include "kaartslot.h"
KaartSlot::KaartSlot(): vergrendeld(true){
}
void KaartSlot::vergrendel(){
vergrendeld = true;
}
bool KaartSlot::isVergrendeld(){
return vergrendeld;
}
void KaartSlot::ontgrendel(std::string id){
}
void KaartSlot::voegIdKaartToe(IdKaart* a){
if(!idKaarten.count(a->userId())){
idKaarten[a->userId()] = a;
}
}
void KaartSlot::verwijderIdKaart(std::string key){
if(idKaarten[key]){
idKaarten.erase(key);
}
}