Qt-Gebouw/draaideur.h
Hello-User b9f62b20e5 init
2022-02-10 17:44:22 +01:00

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