Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update include statements to use new pluginlib and class_loader headers #38

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/warehouse_ros/database_loader.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

#include <boost/scoped_ptr.hpp>
#include <warehouse_ros/database_connection.h>
#include <pluginlib/class_loader.h>
#include <pluginlib/class_loader.hpp>

namespace warehouse_ros
{
Expand Down
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
<build_depend>rostime</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>geometry_msgs</build_depend>
<build_depend>pluginlib</build_depend>
<build_depend version_gte="1.11.2">pluginlib</build_depend>
<build_depend>tf</build_depend>

<run_depend>boost</run_depend>
<run_depend>roscpp</run_depend>
<run_depend>rostime</run_depend>
<run_depend>std_msgs</run_depend>
<run_depend>geometry_msgs</run_depend>
<run_depend>pluginlib</run_depend>
<run_depend version_gte="1.11.2">pluginlib</run_depend>
<run_depend>tf</run_depend>

<test_depend>gtest</test_depend>
Expand Down