Qt-Gebouw/sleutelslot.cpp
2022-03-29 18:38:53 +02:00

19 lines
347 B
C++

#include "sleutelslot.h"
SleutelSlot::SleutelSlot(string sleutel): vergrendeld(true), sleutel(sleutel){
}
bool SleutelSlot::isVergrendeld(){
return vergrendeld;
}
void SleutelSlot::ontgrendel(string sleutel){
if (sleutel == this->sleutel){
vergrendeld = false;
}
}
void SleutelSlot::vergrendel(){
vergrendeld = true;
}