Qt-Gebouw/sleutelslot.h

19 lines
288 B
C
Raw Normal View History

2022-03-29 16:38:53 +00:00
#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