Go to the documentation of this file.00001
00002
00003 #ifndef __OROGEN_GENERATED_<%= typekit.name.upcase %>_ROS_CONVERTIONS_USER_HPP
00004 #define __OROGEN_GENERATED_<%= typekit.name.upcase %>_ROS_CONVERTIONS_USER_HPP
00005
00006 #include <<%= typekit.name %>/typekit/Types.hpp>
00007
00008 <% user_converted_types.each do |type, ros_type| %>
00009 #include <<%= type_to_msg[ros_type.name] %>.h>
00010 <% end %>
00011
00012 namespace ros_convertions {
00014 <% user_converted_types.each do |type, ros_type| %>
00015 void toROS( <%= ros_ref_type(ros_type) %> ros, <%= type.arg_type %> value );
00016 void fromROS( <%= type.ref_type %> value, <%= ros_arg_type(ros_type) %> ros );
00017 <% end %>
00018 }
00019
00020 #endif
00021
00022