15 #include "nav2_behavior_tree/plugins/condition/would_a_planner_recovery_help_condition.hpp"
18 namespace nav2_behavior_tree
21 WouldAPlannerRecoveryHelp::WouldAPlannerRecoveryHelp(
22 const std::string & condition_name,
23 const BT::NodeConfiguration & conf)
24 : AreErrorCodesPresent(condition_name, conf)
26 error_codes_to_check_ = {
27 ActionResult::UNKNOWN,
28 ActionResult::NO_VALID_PATH,
29 ActionResult::TIMEOUT,
30 ThroughActionResult::UNKNOWN,
31 ThroughActionResult::TIMEOUT,
32 ThroughActionResult::NO_VALID_PATH
38 #include "behaviortree_cpp/bt_factory.h"
39 BT_REGISTER_NODES(factory)
42 "WouldAPlannerRecoveryHelp");