ExampleCustomSensor.h
Go to the documentation of this file.
1 #ifndef GAZEBO_CUSTOM_SENSOR_PRELOADER_EXAMPLECUSTOMSENSOR_H
2 #define GAZEBO_CUSTOM_SENSOR_PRELOADER_EXAMPLECUSTOMSENSOR_H
3 
4 #include <gazebo/sensors/Sensor.hh>
5 
6 // It is very important that your custom sensor class is defined inside the
7 // gazebo::sensors namespace.
8 
9 namespace gazebo
10 {
11 namespace sensors
12 {
13 
14 class ExampleCustomSensor : public Sensor
15 {
16  public: ExampleCustomSensor();
17  public: ~ExampleCustomSensor() override;
18  public: void Load(const std::string &_worldName) override;
19  public: void Init() override;
20 };
21 
22 }
23 }
24 
25 #endif //GAZEBO_CUSTOM_SENSOR_PRELOADER_EXAMPLECUSTOMSENSOR_H
gazebo::sensors::ExampleCustomSensor::ExampleCustomSensor
ExampleCustomSensor()
Definition: ExampleCustomSensor.cpp:30
gazebo::sensors::ExampleCustomSensor::Load
void Load(const std::string &_worldName) override
Definition: ExampleCustomSensor.cpp:15
gazebo::sensors::ExampleCustomSensor::Init
void Init() override
Definition: ExampleCustomSensor.cpp:22
gazebo
gazebo::sensors::ExampleCustomSensor
Definition: ExampleCustomSensor.h:14
gazebo::sensors::ExampleCustomSensor::~ExampleCustomSensor
~ExampleCustomSensor() override


gazebo_custom_sensor_preloader
Author(s): Martin Pecka
autogenerated on Sun Sep 3 2023 02:35:25