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

19 lines
288 B
C++

#ifndef SLEUTELSLOT_H
#define SLEUTELSLOT_H
#include "slot.h"
class SleutelSlot : public Slot
{
private:
bool vergrendeld;
string sleutel;
public:
SleutelSlot(string);
void vergrendel();
bool isVergrendeld();
void ontgrendel(string);
};
#endif // SLEUTELSLOT_H