navfn_ros.h uses wrong include directories?
I just wanted to use the wrapper navfn::NavfnROS
for a navfn::NavFn
object and I can't compile because the include paths in this particular header(navfn_ros.h) seem to be corrupted.
The ROS installation for the navfn package on my pc looks like this:
Path: /opt/ros/hydro/navfn
- navfn [folder]
- MakeNavPlan.h
- MakeNavPlanRequest.h
- MakeNavPlanResponse.h
- SetCostmap.h
- SetCostmapRequest.h
- SetCostmapResponse.h
Path: /opt/ros/hydro/navfn/navfn
- navfn.h
- navfn_ros.h
- navwin.h
- potarr_point.h
- read_pgm_costmap.h
The includes in navfn_ros.h are #include <navfn/navfn.h>
and #include <navfn/potarr_point.h>
instead of #include <navfn/navfn/navfn.h>
and #include <navfn/navfn/potarr_point.h>
Does this folder structure only arise on my pc or is it a bug in this wrapper that needs to be reported? I'd be glad if someone around here could check whether it is the same on his pc/ROS install.
Regards, Adrian