MagnetometerSensor.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 
18 #ifndef _GAZEBO_MAGNETOMETER_SENSOR_HH_
19 #define _GAZEBO_MAGNETOMETER_SENSOR_HH_
20 
21 #include <string>
22 
23 #include <sdf/sdf.hh>
24 #include <ignition/math/Vector3.hh>
25 
26 #include "gazebo/sensors/Sensor.hh"
29 #include "gazebo/util/system.hh"
30 
31 namespace gazebo
32 {
33  namespace sensors
34  {
35  // Forward declare private data
36  class MagnetometerSensorPrivate;
37 
40 
43  {
45  public: MagnetometerSensor();
46 
48  public: virtual ~MagnetometerSensor();
49 
50  // Documentation inherited
51  public: virtual void Load(const std::string & _worldName,
52  sdf::ElementPtr _sdf);
53 
54  // Documentation inherited
55  public: virtual void Load(const std::string & _worldName);
56 
57  // Documentation inherited
58  public: virtual void Init();
59 
60  // Documentation inherited
61  public: virtual std::string GetTopic() const;
62 
63  // Documentation inherited
64  protected: virtual bool UpdateImpl(bool _force);
65 
66  // Documentation inherited
67  public: virtual void Fini();
68 
71  public: ignition::math::Vector3d MagneticField() const;
72 
74  private: MagnetometerSensorPrivate *dataPtr;
75  };
77  }
78 }
79 #endif
Definition: MagnetometerSensorPrivate.hh:33
MagnetometerSensor to provide magnetic field measurement.
Definition: MagnetometerSensor.hh:42
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
Forward declarations and typedefs for sensors.
Base class for sensors.
Definition: Sensor.hh:69
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:66