Qt-Gebouw/codeslot.h

18 lines
263 B
C
Raw Normal View History

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