| 230 | // ### IntRangeParameter ### |
| 231 | |
| 232 | IntRangeParameter::IntRangeParameter(const QString& id, const QString& name, int min_value, int max_value) |
| 233 | : IntRangeParameter(id, name, min_value, max_value, { {1, 0} }) |
| 234 | { |
| 235 | // nothing |
| 236 | } |
| 237 | |
| 238 | IntRangeParameter::IntRangeParameter(const QString& id, const QString& name, int min_value, int max_value, OutputList&& outputs) |
| 239 | : CRSTemplateParameter(id, name) |
nothing calls this directly
no outgoing calls
no test coverage detected