2
3
4
5
6
7
8
9
10
11
15#include "behaviortree_cpp/control_node.h"
20
21
22
23
24
25
26
27
28
29
30
31
32
36 WhileDoElseNode(
const std::string& name);
38 ~WhileDoElseNode()
override =
default;
45 virtual void halt()
override;
The ControlNode is the base class for nodes that can have multiple children.
Definition: control_node.h:32
WhileDoElse must have exactly 2 or 3 children. It is a REACTIVE node of IfThenElseNode.
Definition: while_do_else_node.h:34
virtual void halt() override
Definition: action_node.h:24
NodeStatus
Definition: basic_types.h:34