| 135 | } |
| 136 | |
| 137 | void IPLProcess::addProcessPropertyFloat(const char *name, const char *title, const char *description, float value, IPLProcessWidgetType widget, float min, float max) |
| 138 | { |
| 139 | _properties[name].reset(new IPLProcessPropertyFloat(this, (int)_properties.size(), name, title, description, value, widget, min, max)); |
| 140 | } |
| 141 | |
| 142 | void IPLProcess::addProcessPropertyBool(const char *name, const char *title, const char *description, bool value, IPLProcessWidgetType widget) |
| 143 | { |