summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/sensor.h
blob: 15dcdc01bea4321570c9e0f105cec2f06b05e78d (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
28
29
#ifndef _SENSOR_H
#define _SENSOR_H

#include "stdafx.h"

class Sensor : public IO_Module
{
public:
	Sensor()
	{
	}

	Sensor(uint32 sensorId, SensorTypes sensorType)
	{
		this->moduleId = sensorId;
		this->sensorType = sensorType;
	}

protected:
	SensorTypes sensorType;

public:
	SensorTypes GetType()
	{
		return sensorType;
	}
};

#endif