ros2_control - humble
Loading...
Searching...
No Matches
multi_interface_forward_command_controller.hpp
1// Copyright 2021 Stogl Robotics Consulting UG (haftungsbescrhänkt)
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
15#ifndef FORWARD_COMMAND_CONTROLLER__MULTI_INTERFACE_FORWARD_COMMAND_CONTROLLER_HPP_
16#define FORWARD_COMMAND_CONTROLLER__MULTI_INTERFACE_FORWARD_COMMAND_CONTROLLER_HPP_
17
18#include <memory>
19#include <string>
20#include <vector>
21
22#include "forward_command_controller/forward_controllers_base.hpp"
23#include "forward_command_controller/visibility_control.h"
24#include "multi_interface_forward_command_controller_parameters.hpp"
25
26namespace forward_command_controller
27{
41{
42public:
43 FORWARD_COMMAND_CONTROLLER_PUBLIC
45
46protected:
47 void declare_parameters() override;
48 controller_interface::CallbackReturn read_parameters() override;
49
50 using Params = multi_interface_forward_command_controller::Params;
51 using ParamListener = multi_interface_forward_command_controller::ParamListener;
52
53 std::shared_ptr<ParamListener> param_listener_;
54 Params params_;
55};
56
57} // namespace forward_command_controller
58
59#endif // FORWARD_COMMAND_CONTROLLER__MULTI_INTERFACE_FORWARD_COMMAND_CONTROLLER_HPP_
Forward command controller for a set of joints and interfaces.
Definition forward_controllers_base.hpp:43
Multi interface forward command controller for a set of interfaces.
Definition multi_interface_forward_command_controller.hpp:41
controller_interface::CallbackReturn read_parameters() override
Definition multi_interface_forward_command_controller.cpp:33
void declare_parameters() override
Definition multi_interface_forward_command_controller.cpp:28