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