Qt-Gebouw/hallsensor.h

16 lines
237 B
C
Raw Normal View History

2022-02-10 16:44:22 +00:00
#ifndef HALLSENSOR_H
#define HALLSENSOR_H
#include <utility>
#include "sensor.h"
class QPaintDevice;
class Hallsensor: public Sensor{
public:
Hallsensor(int, int);
virtual void teken(QPaintDevice*);
};
#endif // HALLSENSOR_H