17 lines
239 B
C
17 lines
239 B
C
|
#ifndef SLOT_H
|
||
|
#define SLOT_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Slot{
|
||
|
public:
|
||
|
Slot();
|
||
|
virtual void ontgrendel(string) = 0;
|
||
|
virtual void vergrendel() = 0;
|
||
|
virtual bool isVergrendeld() = 0;
|
||
|
};
|
||
|
|
||
|
#endif // SLOT_H
|