18 lines
247 B
C++
18 lines
247 B
C++
#ifndef DRAAIDEUR_H
|
|
#define DRAAIDEUR_H
|
|
|
|
#include "deur.h"
|
|
|
|
class QPaintDevice;
|
|
|
|
class draaideur : public Deur{
|
|
private:
|
|
bool liggend;
|
|
public:
|
|
draaideur(int,int,int,bool);
|
|
void teken(QPaintDevice*) override;
|
|
|
|
};
|
|
|
|
#endif // DRAAIDEUR_H
|