Skip to content

Commit

Permalink
Merge pull request #2748 from blacksoul000/gazebo11
Browse files Browse the repository at this point in the history
Add GZ_PLUGIN_VISIBLE for tracked plugins
  • Loading branch information
j-rivero authored Jun 9, 2020
2 parents a190df2 + 98efb08 commit cce3423
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/SimpleTrackedVehiclePlugin.hh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace gazebo {
/// <collide_without_contact_bitmask> Collision bitmask that will be set to
/// the whole vehicle (default is 1u).

class SimpleTrackedVehiclePlugin :
class GZ_PLUGIN_VISIBLE SimpleTrackedVehiclePlugin :
public TrackedVehiclePlugin
{
public: SimpleTrackedVehiclePlugin() = default;
Expand Down
2 changes: 1 addition & 1 deletion plugins/TrackedVehiclePlugin.hh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ namespace gazebo
/// definition are used.
/// <robot_namespace> Namespace used as a prefix for gazebo topic names.
/// Default is the name of the model.
class TrackedVehiclePlugin : public ModelPlugin
class GZ_PLUGIN_VISIBLE TrackedVehiclePlugin : public ModelPlugin
{
/// \brief Default Contstuctor
public: TrackedVehiclePlugin();
Expand Down
2 changes: 1 addition & 1 deletion plugins/WheelTrackedVehiclePlugin.hh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace gazebo
/// appear multiple times, once for each right wheel).
/// <default_wheel_radius> The radius used for wheels where radius
/// autodetection fails (default is 0.5 meters).
class WheelTrackedVehiclePlugin :
class GZ_PLUGIN_VISIBLE WheelTrackedVehiclePlugin :
public TrackedVehiclePlugin
{
public: WheelTrackedVehiclePlugin() = default;
Expand Down

0 comments on commit cce3423

Please sign in to comment.