27 lines
367 B
C++
27 lines
367 B
C++
#ifndef _DISTANCE_SENSOR_H
|
|
#define _DISTANCE_SENSOR_H
|
|
|
|
//#include "stdafx.h"
|
|
#include "sensor.h"
|
|
|
|
class Distance_Sensor : public Sensor
|
|
{
|
|
public:
|
|
Distance_Sensor()
|
|
{
|
|
this->parent = NULL;
|
|
this->moduleId = 0;
|
|
}
|
|
|
|
Distance_Sensor(uint32 sensorId)
|
|
{
|
|
this->parent = NULL;
|
|
this->moduleId = sensorId;
|
|
}
|
|
|
|
protected:
|
|
|
|
public:
|
|
};
|
|
|
|
#endif
|