This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/Concept/Framework/sensor.h
sicarius 7370f9ab1e updated todo.txt;
added some files as .pdf, too
2007-02-04 21:38:03 +00:00

29 lines
369 B
C++

#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