| 237 | } |
| 238 | |
| 239 | IPLProcessProperty::IPLProcessProperty(int position, const char* name, const char *title, const char *description, IPLProcess *process, IPLProcessWidgetType widget): |
| 240 | _position(position), |
| 241 | _name(name), |
| 242 | _title(title), |
| 243 | _description(description), |
| 244 | _process(process), |
| 245 | _widget(widget) |
| 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), |
nothing calls this directly
no outgoing calls
no test coverage detected