Skip to content

Commit 1b372e3

Browse files
authored
include class_list_macros.hpp instead of h (#91)
1 parent 270aaa8 commit 1b372e3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

rviz_plugin_tutorials/src/imu_display.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,6 @@ void ImuDisplay::processMessage( const sensor_msgs::Imu::ConstPtr& msg )
156156

157157
// Tell pluginlib about this class. It is important to do this in
158158
// global scope, outside our package's namespace.
159-
#include <pluginlib/class_list_macros.h>
159+
#include <pluginlib/class_list_macros.hpp>
160160
PLUGINLIB_EXPORT_CLASS(rviz_plugin_tutorials::ImuDisplay,rviz::Display )
161161
// END_TUTORIAL

rviz_plugin_tutorials/src/plant_flag_tool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,6 @@ void PlantFlagTool::load( const rviz::Config& config )
294294

295295
} // end namespace rviz_plugin_tutorials
296296

297-
#include <pluginlib/class_list_macros.h>
297+
#include <pluginlib/class_list_macros.hpp>
298298
PLUGINLIB_EXPORT_CLASS(rviz_plugin_tutorials::PlantFlagTool,rviz::Tool )
299299
// END_TUTORIAL

rviz_plugin_tutorials/src/teleop_panel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,6 @@ void TeleopPanel::load( const rviz::Config& config )
195195
// Tell pluginlib about this class. Every class which should be
196196
// loadable by pluginlib::ClassLoader must have these two lines
197197
// compiled in its .cpp file, outside of any namespace scope.
198-
#include <pluginlib/class_list_macros.h>
198+
#include <pluginlib/class_list_macros.hpp>
199199
PLUGINLIB_EXPORT_CLASS(rviz_plugin_tutorials::TeleopPanel,rviz::Panel )
200200
// END_TUTORIAL

0 commit comments

Comments
 (0)