| 15 | namespace BT |
| 16 | { |
| 17 | IfThenElseNode::IfThenElseNode(const std::string& name) |
| 18 | : ControlNode::ControlNode(name, {}), child_idx_(0) |
| 19 | { |
| 20 | setRegistrationID("IfThenElse"); |
| 21 | } |
| 22 | |
| 23 | void IfThenElseNode::halt() |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected