| 246 | {} |
| 247 | |
| 248 | IPLProcessPropertyInt::IPLProcessPropertyInt(IPLProcess *process, int position, const char* name, const char* title, const char *description, int value, IPLProcessWidgetType widget, int min, int max): |
| 249 | IPLProcessProperty(position,name,title,description,process,widget), |
| 250 | _value(value), |
| 251 | _default(value), |
| 252 | _min(min), |
| 253 | _max(max) |
| 254 | {} |
| 255 | |
| 256 | void IPLProcessPropertyInt::setValue(int value) |
| 257 | { |
nothing calls this directly
no outgoing calls
no test coverage detected