| 277 | } |
| 278 | |
| 279 | IPLProcessPropertyUnsignedInt::IPLProcessPropertyUnsignedInt(IPLProcess *process, int position, const char* name, const char* title, const char *description, unsigned int value, IPLProcessWidgetType widget, unsigned int min, unsigned int max): |
| 280 | IPLProcessProperty(position,name,title,description,process,widget), |
| 281 | _value(value), |
| 282 | _default(value), |
| 283 | _min(min), |
| 284 | _max(max) |
| 285 | {} |
| 286 | |
| 287 | void IPLProcessPropertyUnsignedInt::setValue(unsigned int value) |
| 288 | { |
nothing calls this directly
no outgoing calls
no test coverage detected