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/modules/input/sensor.h

28 lines
336 B
C
Raw Permalink Normal View History

2007-02-18 00:14:00 +00:00
#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