| 22 | constexpr const char* ParallelNode::THRESHOLD_SUCCESS; |
| 23 | |
| 24 | ParallelNode::ParallelNode(const std::string& name) |
| 25 | : ControlNode::ControlNode(name, {}) |
| 26 | , success_threshold_(-1) |
| 27 | , failure_threshold_(1) |
| 28 | , read_parameter_from_ports_(false) |
| 29 | { |
| 30 | setRegistrationID("Parallel"); |
| 31 | } |
| 32 | |
| 33 | ParallelNode::ParallelNode(const std::string& name, const NodeConfig& config) |
| 34 | : ControlNode::ControlNode(name, config) |
nothing calls this directly
no outgoing calls
no test coverage detected