OpenWalker Project
Documentation of the ROS Packages
i_force_torque_sensors.h
Go to the documentation of this file.
1 
34 #ifndef OPEN_WALKER_CORE_INTERFACES_I_FORCE_TORQUE_SENSORS_H
35 #define OPEN_WALKER_CORE_INTERFACES_I_FORCE_TORQUE_SENSORS_H
36 
37 #include <ow_core/types.h>
38 
39 namespace ow_core{
40 
41 
48 {
49 public:
54  {
55  }
56 
57  virtual ow::Wrench& leftFoot() = 0;
58  virtual const ow::Wrench& leftFoot() const = 0;
59 
60  virtual ow::Wrench& rightFoot() = 0;
61  virtual const ow::Wrench& rightFoot() const = 0;
62 
63 };
64 
65 
66 }
67 
68 #endif // OPEN_WALKER_CORE_INTERFACES_I_FORCE_TORQUE_SENSORS_H
The IForceTorqueSensors class.
Definition: i_force_torque_sensors.h:47
Definition: angular_acceleration.h:39
virtual ~IForceTorqueSensors()
Virtual destructor.
Definition: i_force_torque_sensors.h:53