joint_dispatcher
/build/rock-master-18.09-control-orogen-joint-dispatcher-0.20160908/joint_dispatcherTypes.hpp
Go to the documentation of this file.
1 #ifndef joint_dispatcher_TYPES_HPP
2 #define joint_dispatcher_TYPES_HPP
3 
4 #include <vector>
5 #include <string>
6 
7 namespace joint_dispatcher {
9  {
10  std::string name;
11 
15  std::vector<std::string> jointNames;
16  };
17 
19  {
21  std::string input;
25  std::vector<int> input_selection_by_index;
29  std::vector<std::string> input_selection_by_name;
30 
32  std::string output;
36  std::vector<int> output_selection_by_index;
40  std::vector<std::string> output_selection_by_name;
41  };
42 
44  {
45  std::string jointName;
46 
47  double position;
48  };
49 }
50 
51 #endif
52 
std::vector< std::string > input_selection_by_name
Definition: joint_dispatcherTypes.hpp:29
std::vector< std::string > output_selection_by_name
Definition: joint_dispatcherTypes.hpp:40
std::string input
Definition: joint_dispatcherTypes.hpp:21
Definition: joint_dispatcherTypes.hpp:7
std::vector< std::string > jointNames
Definition: joint_dispatcherTypes.hpp:15
double position
Definition: joint_dispatcherTypes.hpp:47
std::string jointName
Definition: joint_dispatcherTypes.hpp:45
std::vector< int > output_selection_by_index
Definition: joint_dispatcherTypes.hpp:36
std::string output
Definition: joint_dispatcherTypes.hpp:32
std::string name
Definition: joint_dispatcherTypes.hpp:10
Definition: joint_dispatcherTypes.hpp:18
Definition: joint_dispatcherTypes.hpp:43
std::vector< int > input_selection_by_index
Definition: joint_dispatcherTypes.hpp:25
Definition: joint_dispatcherTypes.hpp:8