17 lines
234 B
C++
17 lines
234 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);
|
|
void teken(QPaintDevice*);
|
|
};
|
|
|
|
#endif // DRAAIDEUR_H
|