| 341 | |
| 342 | |
| 343 | IPLProcessPropertyFloat::IPLProcessPropertyFloat(IPLProcess *process, int position, const char* name, const char* title, const char *description, float value, IPLProcessWidgetType widget, float min, float max): |
| 344 | IPLProcessProperty(position,name,title,description,process,widget), |
| 345 | _value(value), |
| 346 | _default(value), |
| 347 | _min(min), |
| 348 | _max(max) |
| 349 | {} |
| 350 | |
| 351 | void IPLProcessPropertyFloat::setValue(float value) |
| 352 | { |
nothing calls this directly
no outgoing calls
no test coverage detected