#ifndef CODESLOT_H #define CODESLOT_H #include "slot.h" class CodeSlot : public Slot{ private: bool vergrendeld; int code; public: CodeSlot(int); void vergrendel(); bool isVergrendeld(); void ontgrendel(string); }; #endif // CODESLOT_H