#ifndef _ROBOCUP_LINESENSOR_H_ #define _ROBOCUP_LINESENSOR_H_ class LineSensor { private: int id; float value; public: LineSensor(int id); float updateValue(); float getValue() {return value;} }; #endif