| 17 | { |
| 18 | |
| 19 | RepeatNode::RepeatNode(const std::string& name, int NTries) |
| 20 | : DecoratorNode(name, {}) |
| 21 | , num_cycles_(NTries) |
| 22 | , repeat_count_(0) |
| 23 | , read_parameter_from_ports_(false) |
| 24 | { |
| 25 | setRegistrationID("Repeat"); |
| 26 | } |
| 27 | |
| 28 | RepeatNode::RepeatNode(const std::string& name, const NodeConfig& config) |
| 29 | : DecoratorNode(name, config) |
nothing calls this directly
no outgoing calls
no test coverage detected