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