| 53 | } |
| 54 | |
| 55 | void ControlNode::haltChild(size_t i) |
| 56 | { |
| 57 | auto* child = children_nodes_[i]; |
| 58 | if(child->status() == NodeStatus::RUNNING) |
| 59 | { |
| 60 | child->haltNode(); |
| 61 | } |
| 62 | child->resetStatus(); |
| 63 | } |
| 64 | |
| 65 | void ControlNode::haltChildren() |
| 66 | { |
nothing calls this directly
no test coverage detected