Why there is no #define before PLUGINLIB_EXPORT_CLASS macro?
When we want to make a plugin, we need to register the plugin
PLUGINLIB_EXPORT_CLASS(carrot_planner::CarrotPlanner, nav_core::BaseGlobalPlanner)
My understanding is that this is the redefinition of the pluginlib_export_class macro. However, from what I have seen so far, we need #define
for this. How come there is no #define
?
Thanks, Rico