30 lines
477 B
C++
30 lines
477 B
C++
#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);
|
|
}
|
|
}
|