AutoAPMS
Resilient Robot Mission Management
Loading...
Searching...
No Matches
halt_executor.cpp
Go to the documentation of this file.
1// Copyright 2024 Robin Müller
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// https://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
16#include "auto_apms_interfaces/action/command_tree_executor.hpp"
17
19{
20
21class HaltExecutorAction : public RosActionNode<auto_apms_interfaces::action::CommandTreeExecutor>
22{
23public:
25
26 bool setGoal(Goal& goal)
27 {
28 goal.command = Goal::COMMAND_HALT;
29 return true;
30 }
31};
32
33} // namespace auto_apms_behavior_tree
34
35AUTO_APMS_BEHAVIOR_TREE_REGISTER_NODE(auto_apms_behavior_tree::HaltExecutorAction)
RosActionNode(const std::string &instance_name, const Config &config, const Context &context)
typename auto_apms_interfaces::action::CommandTreeExecutor::Goal Goal
#define AUTO_APMS_BEHAVIOR_TREE_REGISTER_NODE(type)
Macro for registering a behavior tree node plugin.
Definition node.hpp:30