Rename headers from .h to .hpp (#296)

* Rename headers from .h to .hpp per ROS2 guidelines

This change is the result of the following command run from pcl_ros dir:

$ find -name *.h | xargs -I {} mv {} {}pp

Signed-off-by: Sean Kelly <sean@seankelly.dev>

* Update internal includes for the renamed headers

This change was the result of the following bash script:

$ find -name *.h -o -name *.cpp -o -name *.hpp | xargs -I {} sed -i 's/\(pcl_ros\/.*\)\(h\)\([">]\)$/\1\2pp\3/g' {}

Signed-off-by: Sean Kelly <sean@seankelly.dev>
This commit is contained in:
Sean Kelly
2020-08-06 14:13:01 -04:00
committed by GitHub
parent 21cf907c46
commit 0ac6810688
83 changed files with 94 additions and 94 deletions
@@ -41,7 +41,7 @@
#include <boost/bind.hpp>
#include <boost/scoped_ptr.hpp>
#include <pcl_ros/point_cloud.h>
#include <pcl_ros/point_cloud.hpp>
#include <pcl_conversions/pcl_conversions.h>
#include <ros/ros.h>