16 lines
237 B
C++
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
|