summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/distance_sensor.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Concept/Framework/distance_sensor.h')
-rw-r--r--source/Concept/Framework/distance_sensor.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/Concept/Framework/distance_sensor.h b/source/Concept/Framework/distance_sensor.h
new file mode 100644
index 0000000..7690ab4
--- /dev/null
+++ b/source/Concept/Framework/distance_sensor.h
@@ -0,0 +1,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