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

28 lines
327 B
C
Raw Normal View History

2007-01-14 18:07:03 +00:00
#ifndef _SENSOR_H
#define _SENSOR_H
2007-02-15 20:33:05 +00:00
#include "defines.h"
#include "io_module.h"
2007-01-14 18:07:03 +00:00
class Sensor : public IO_Module
{
public:
Sensor()
{
this->parent = NULL;
2007-02-15 20:33:05 +00:00
this->moduleId = 0;
2007-01-14 18:07:03 +00:00
}
2007-02-15 20:33:05 +00:00
Sensor(uint32 sensorId)
2007-01-14 18:07:03 +00:00
{
this->parent = NULL;
2007-01-14 18:07:03 +00:00
this->moduleId = sensorId;
}
protected:
public:
};
#endif