18 lines
268 B
C
18 lines
268 B
C
|
#ifndef SCHUIFDEUR_H
|
||
|
#define SCHUIFDEUR_H
|
||
|
|
||
|
#include "deur.h"
|
||
|
|
||
|
class QPaintDevice;
|
||
|
class Sensor;
|
||
|
|
||
|
class Schuifdeur : public Deur{
|
||
|
public:
|
||
|
Schuifdeur(int, int, int);
|
||
|
void teken(QPaintDevice*) override;
|
||
|
void sluit();
|
||
|
Sensor* s;
|
||
|
};
|
||
|
|
||
|
#endif // SCHUIFDEUR_H
|