Easy Navigation
Loading...
Searching...
No Matches
DummyMapsManager.hpp
Go to the documentation of this file.
1// Copyright 2025 Intelligent Robotics Lab
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
17
18#ifndef EASYNAV_PLANNER__DUMMYMAPMANAGER_HPP_
19#define EASYNAV_PLANNER__DUMMYMAPMANAGER_HPP_
20
21#include "easynav_core/MapsManagerBase.hpp"
22
23namespace easynav
24{
25
32class DummyMapsManager : public easynav::MapsManagerBase
33{
34public:
36 DummyMapsManager() = default;
37
39 ~DummyMapsManager() = default;
40
44 virtual void on_initialize() override;
45
50 virtual void update(NavState & nav_state) override;
51
52private:
53 double cycle_time_rt_ {0.0};
54 double cycle_time_nort_ {0.0};
55};
56
57} // namespace easynav
58
59#endif // EASYNAV_PLANNER__DUMMYMAPMANAGER_HPP_
virtual void update(NavState &nav_state) override
Dummy update method.
Definition DummyMapsManager.cpp:33
DummyMapsManager()=default
Default constructor.
virtual void on_initialize() override
Initialize the plugin.
Definition DummyMapsManager.cpp:23
~DummyMapsManager()=default
Default destructor.
A generic, type-safe, thread-safe blackboard to hold runtime state.
Definition NavState.hpp:82
Definition CircularBuffer.hpp:23