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

Add GZ_PLUGIN_VISIBLE for tracked plugins #2748

Merged
merged 1 commit into from
Jun 9, 2020
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 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