Qt-Gebouw/draaideur.h

17 lines
234 B
C
Raw Normal View History

2022-02-10 16:44:22 +00:00
#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