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

16 lines
237 B
C++

#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