summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/sensor.h
blob: 62f21654e4cbce1243d503587fedfe73e309ef9f (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 _SENSOR_H
#define _SENSOR_H

#include "defines.h"
#include "io_module.h"

class Sensor : public IO_Module
{
public:
	Sensor()
	{
		this->parent = NULL;
		this->moduleId = 0;
	}

	Sensor(uint32 sensorId)
	{
		this->parent = NULL;
		this->moduleId = sensorId;
	}

protected:

public:
};

#endif