Skip to content

Commit 7f9f1b7

Browse files
committed
Remove visiblity from missing plugins
1 parent c4ae0ad commit 7f9f1b7

File tree

8 files changed

+6
-25
lines changed

8 files changed

+6
-25
lines changed

src/systems/camera_video_recorder/CameraVideoRecorder.hh

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ namespace systems
4141
/// /world/<world_name/model/<model_name>/link/<link_name>/
4242
/// sensor/<sensor_name>/record_video
4343
class
44-
IGNITION_GAZEBO_CAMERA_VIDEO_RECORDER_SYSTEM_VISIBLE
4544
CameraVideoRecorder:
4645
public System,
4746
public ISystemConfigure,

src/systems/joint_position_controller/JointPositionController.hh

+1-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ namespace systems
7171
///
7272
/// `<cmd_offset>` Command offset (feed-forward) of the PID. Optional
7373
/// parameter. The default value is 0.
74-
class
75-
IGNITION_GAZEBO_JOINT_POSITION_CONTROLLER_SYSTEM_VISIBLE
76-
JointPositionController
74+
class JointPositionController
7775
: public System,
7876
public ISystemConfigure,
7977
public ISystemPreUpdate

src/systems/logical_audio_sensor_plugin/LogicalAudio.hh

-6
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ namespace logical_audio
4141
/// device with a higher detection threshold.
4242
/// \return true if the listening device can detect volume at _volumeLevel,
4343
/// false otherwise.
44-
IGNITION_GAZEBO_LOGICALAUDIOSENSORPLUGIN_SYSTEM_VISIBLE
4544
bool detect(double _volumeLevel, double _volumeDetectionThreshold);
4645

4746
/// \brief Computes the volume level of an audio source at a certain location.
@@ -62,7 +61,6 @@ namespace logical_audio
6261
/// \return The volume level at this location.
6362
/// If the attenuation function or shape is undefined, -1.0 is returned.
6463
/// If the source is not playing, 0.0 is returned.
65-
IGNITION_GAZEBO_LOGICALAUDIOSENSORPLUGIN_SYSTEM_VISIBLE
6664
double computeVolume(bool _playing,
6765
AttenuationFunction _attenuationFunc,
6866
AttenuationShape _attenuationShape,
@@ -85,7 +83,6 @@ namespace logical_audio
8583
/// the calculated attenuation function.
8684
/// \param[in] _str A string that should map to a value in
8785
/// AttenuationFunction.
88-
IGNITION_GAZEBO_LOGICALAUDIOSENSORPLUGIN_SYSTEM_VISIBLE
8986
void setAttenuationFunction(AttenuationFunction &_attenuationFunc,
9087
std::string _str);
9188

@@ -101,7 +98,6 @@ namespace logical_audio
10198
/// calculated attenuation shape.
10299
/// \param[in] _str A string that should map to a value in
103100
/// AttenuationShape.
104-
IGNITION_GAZEBO_LOGICALAUDIOSENSORPLUGIN_SYSTEM_VISIBLE
105101
void setAttenuationShape(AttenuationShape &_attenuationShape,
106102
std::string _str);
107103

@@ -114,15 +110,13 @@ namespace logical_audio
114110
/// source. This value must be greater than _innerRadius.
115111
/// If _falloffDistance < _innerRadius, _falloffDistance will be set to
116112
/// _innerRadius + 1 (assuming that _innerRadius is valid).
117-
IGNITION_GAZEBO_LOGICALAUDIOSENSORPLUGIN_SYSTEM_VISIBLE
118113
void validateInnerRadiusAndFalloffDistance(double &_innerRadius,
119114
double &_falloffDistance);
120115

121116
/// \brief Validate a source's emission volume level.
122117
/// \param[in,out] _volumeLevel The volume the source should play at.
123118
/// This parameter is checked (and possibly clipped) to ensure that it falls
124119
/// between 0.0 (0% volume) and 1.0 (100% volume).
125-
IGNITION_GAZEBO_LOGICALAUDIOSENSORPLUGIN_SYSTEM_VISIBLE
126120
void validateVolumeLevel(double &_volumeLevel);
127121
}
128122
}

src/systems/logical_audio_sensor_plugin/LogicalAudioSensorPlugin.hh

+1-3
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,7 @@ namespace systems
128128
/// <PREFIX>/mic_<id>/detection topic, where <PREFIX> is the scoped name
129129
/// for the microphone - see ignition::gazebo::scopedName for more details -
130130
/// and <id> is the value specified in the microphone's <id> tag from the SDF.
131-
class
132-
IGNITION_GAZEBO_LOGICALAUDIOSENSORPLUGIN_SYSTEM_VISIBLE
133-
LogicalAudioSensorPlugin :
131+
class LogicalAudioSensorPlugin :
134132
public System,
135133
public ISystemConfigure,
136134
public ISystemPreUpdate,

src/systems/multicopter_control/MulticopterVelocityControl.hh

+1-3
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,7 @@ namespace systems
146146
/// # Examples
147147
/// See examples/worlds/quadcopter.sdf for a demonstration.
148148
///
149-
class
150-
IGNITION_GAZEBO_MULTICOPTER_CONTROL_SYSTEM_VISIBLE
151-
MulticopterVelocityControl
149+
class MulticopterVelocityControl
152150
: public System,
153151
public ISystemConfigure,
154152
public ISystemPreUpdate

src/systems/multicopter_motor_model/MulticopterMotorModel.hh

+1-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ namespace systems
3333

3434
/// \brief This system applies a thrust force to models with spinning
3535
/// propellers. See examples/worlds/quadcopter.sdf for a demonstration.
36-
class
37-
IGNITION_GAZEBO_MULTICOPTER_MOTOR_MODEL_SYSTEM_VISIBLE
38-
MulticopterMotorModel
36+
class MulticopterMotorModel
3937
: public System,
4038
public ISystemConfigure,
4139
public ISystemPreUpdate

src/systems/optical_tactile_plugin/OpticalTactilePlugin.hh

+1-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ namespace systems
6565
/// <visualize_sensor> Whether to visualize the sensor or not. This element
6666
/// is optional, and the default value is false.
6767

68-
class
69-
IGNITION_GAZEBO_OPTICALTACTILEPLUGIN_SYSTEM_VISIBLE
70-
OpticalTactilePlugin :
68+
class OpticalTactilePlugin :
7169
public System,
7270
public ISystemConfigure,
7371
public ISystemPreUpdate,

src/systems/triggered_publisher/TriggeredPublisher.hh

+1-3
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,7 @@ namespace systems
153153
/// The current implementation of this system does not support specifying a
154154
/// subfield of a repeated field in the "field" attribute. i.e, if
155155
/// `field="f1.f2"`, `f1` cannot be a repeated field.
156-
class
157-
IGNITION_GAZEBO_TRIGGERED_PUBLISHER_SYSTEM_VISIBLE
158-
TriggeredPublisher :
156+
class TriggeredPublisher :
159157
public System,
160158
public ISystemConfigure
161159
{

0 commit comments

Comments
 (0)