summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/distance_sensor.h
blob: 7690ab4367e837b6573bc54a9d9004ef224c3b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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