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

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