| 309 | |
| 310 | |
| 311 | IPLProcessPropertyDouble::IPLProcessPropertyDouble(IPLProcess *process, int position, const char* name, const char* title, const char *description, double value, IPLProcessWidgetType widget, double min, double max): |
| 312 | IPLProcessProperty(position,name,title,description,process, widget), |
| 313 | _value(value), |
| 314 | _default(value), |
| 315 | _min(min), |
| 316 | _max(max) |
| 317 | {} |
| 318 | |
| 319 | void IPLProcessPropertyDouble::setValue(double value) |
| 320 | { |
nothing calls this directly
no outgoing calls
no test coverage detected