19 lines
288 B
C++
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
|