OpenWalker Project
Documentation of the ROS Packages
i_robot_out_ports.h
Go to the documentation of this file.
1 
34 #ifndef OPEN_WALKER_CORE_INTERFACES_I_ROBOT_OUT_PORTS_H
35 #define OPEN_WALKER_CORE_INTERFACES_I_ROBOT_OUT_PORTS_H
36 
39 
40 namespace ow_core{
41 
48 {
49 public:
53  virtual ~IRobotOutPorts()
54  {
55  }
56 
57  virtual IRobotOutPortsReal* real() = 0;
58  virtual const IRobotOutPortsReal* real() const = 0;
59 
60  virtual IRobotOutPortsCmd* cmd() = 0;
61  virtual const IRobotOutPortsCmd* cmd() const = 0;
62 
63 };
64 
65 
66 }
67 
68 #endif // OPEN_WALKER_CORE_INTERFACES_I_ROBOT_OUT_PORTS_H
virtual ~IRobotOutPorts()
Virtual destructor.
Definition: i_robot_out_ports.h:53
Definition: angular_acceleration.h:39
The IRobotOutPorts class.
Definition: i_robot_out_ports.h:47
The IRobotOutPortsReal class.
Definition: i_robot_out_ports_real.h:48
The IRobotOutPortsCmd class.
Definition: i_robot_out_ports_cmd.h:46