2022-02-10 16:44:22 +00:00
|
|
|
#ifndef DRAAIDEUR_H
|
|
|
|
#define DRAAIDEUR_H
|
|
|
|
|
|
|
|
#include "deur.h"
|
|
|
|
|
|
|
|
class QPaintDevice;
|
|
|
|
|
2022-02-17 23:51:34 +00:00
|
|
|
class draaideur : public Deur{
|
2022-02-10 16:44:22 +00:00
|
|
|
private:
|
|
|
|
bool liggend;
|
|
|
|
public:
|
2022-02-17 23:51:34 +00:00
|
|
|
draaideur(int,int,int,bool);
|
|
|
|
void teken(QPaintDevice*) override;
|
|
|
|
|
2022-02-10 16:44:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DRAAIDEUR_H
|