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

18 lines
263 B
C++

#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