2022-02-10 16:44:22 +00:00
|
|
|
#ifndef SCHUIFDEUR_H
|
|
|
|
#define SCHUIFDEUR_H
|
|
|
|
|
|
|
|
#include "deur.h"
|
|
|
|
|
|
|
|
class QPaintDevice;
|
|
|
|
class Sensor;
|
|
|
|
|
|
|
|
class Schuifdeur : public Deur{
|
|
|
|
public:
|
2022-02-17 23:51:34 +00:00
|
|
|
Schuifdeur(int, int, int, Sensor*);
|
2022-03-29 16:38:53 +00:00
|
|
|
//Schuifdeur(int, int, int, Sensor*, Slot*);
|
2022-02-10 16:44:22 +00:00
|
|
|
void teken(QPaintDevice*) override;
|
2022-03-29 16:38:53 +00:00
|
|
|
void sluit() override;
|
2022-02-10 16:44:22 +00:00
|
|
|
Sensor* s;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCHUIFDEUR_H
|