18 lines
263 B
C++
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
|