vision
Loading...
Searching...
No Matches
LineCallbackPort.hpp
1#ifndef __LINE_CALLBACK_PORT_HPP__
2#define __LINE_CALLBACK_PORT_HPP__
3
4#include <yarp/os/BufferedPort.h>
5
6#include "SharedArea.hpp"
7
8namespace roboticslab {
9
10class LineCallbackPort : public yarp::os::BufferedPort<yarp::os::Bottle> {
11 protected:
12 void onRead(yarp::os::Bottle& b);
13 SharedArea* sharedArea;
14
15 public:
16 void setSharedArea(SharedArea* _sharedArea);
17};
18
19} // namespace roboticslab
20
21#endif // __LINE_CALLBACK_PORT_HPP__
22
Definition LineCallbackPort.hpp:10
Definition SharedArea.hpp:12
The main, catch-all namespace for Robotics Lab UC3M.
Definition groups.dox:5