#include <control_node.h>
Public Member Functions | |
void | addChild (TreeNode *child) |
const TreeNode * | child (unsigned index) const |
const std::vector< TreeNode * > & | children () const |
unsigned int | childrenCount () const |
ControlNode (const std::string &name, const NodeParameters ¶meters) | |
virtual void | halt () override |
The method used to interrupt the execution of a RUNNING node. | |
void | haltChildren (int i) |
virtual NodeType | type () const override final |
virtual | ~ControlNode () override |
Protected Attributes | |
std::vector< TreeNode * > | children_nodes_ |
Definition at line 22 of file control_node.h.
BT::ControlNode::ControlNode | ( | const std::string & | name, |
const NodeParameters & | parameters | ||
) |
Definition at line 18 of file control_node.cpp.
virtual BT::ControlNode::~ControlNode | ( | ) | [override, virtual] |
void BT::ControlNode::addChild | ( | TreeNode * | child | ) |
Definition at line 26 of file control_node.cpp.
const TreeNode* BT::ControlNode::child | ( | unsigned | index | ) | const [inline] |
Definition at line 42 of file control_node.h.
const std::vector< TreeNode * > & BT::ControlNode::children | ( | ) | const |
Definition at line 51 of file control_node.cpp.
unsigned int BT::ControlNode::childrenCount | ( | ) | const |
Definition at line 40 of file control_node.cpp.
void BT::ControlNode::halt | ( | ) | [override, virtual] |
The method used to interrupt the execution of a RUNNING node.
Implements BT::TreeNode.
Reimplemented in BT::SequenceStarNode, BT::FallbackStarNode, and BT::ParallelNode.
Definition at line 45 of file control_node.cpp.
void BT::ControlNode::haltChildren | ( | int | i | ) |
Definition at line 56 of file control_node.cpp.
virtual NodeType BT::ControlNode::type | ( | ) | const [inline, override, virtual] |
Implements BT::TreeNode.
Definition at line 52 of file control_node.h.
std::vector<TreeNode*> BT::ControlNode::children_nodes_ [protected] |
Definition at line 26 of file control_node.h.