Gazebo Sim

API Reference

8.6.0
DopplerVelocityLogSystem.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2022 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 GZ_SIM_SYSTEMS_DOPPLERVELOCITYLOGSYSTEM_HH_
19 #define GZ_SIM_SYSTEMS_DOPPLERVELOCITYLOGSYSTEM_HH_
20 
21 #include <memory>
22 
23 #include <gz/utils/ImplPtr.hh>
24 #include "gz/sim/System.hh"
25 
26 namespace gz
27 {
28 namespace sim
29 {
30 // Inline bracket to help doxygen filtering
31 inline namespace GZ_SIM_VERSION_NAMESPACE {
32 namespace systems
33 {
34 
37  public System,
38  public ISystemConfigure,
39  public ISystemPreUpdate,
40  public ISystemPostUpdate
41 {
43  public: explicit DopplerVelocityLogSystem();
44 
47 
48  // Documentation inherited
49  public: void Configure(
50  const Entity &_entity,
53  EventManager &_eventMgr
54  ) override;
55 
56  // Documentation inherited
57  public: void PreUpdate(
58  const UpdateInfo &_info,
59  EntityComponentManager &_ecm) override;
60 
61  // Documentation inherited
62  public: void PostUpdate(
63  const UpdateInfo &_info,
64  const EntityComponentManager &_ecm) override;
65 
67  GZ_UTILS_UNIQUE_IMPL_PTR(dataPtr)
68 };
69 
70 } // namespace systems
71 } // namespace GZ_SIM_VERSION_NAMESPACE
72 } // namespace sim
73 } // namespace gz
74 
75 #endif