#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