| 125 | } |
| 126 | |
| 127 | void IPLProcess::addProcessPropertyUnsignedInt(const char *name, const char *title, const char *description, unsigned int value, IPLProcessWidgetType widget, unsigned int min, unsigned int max) |
| 128 | { |
| 129 | _properties[name].reset(new IPLProcessPropertyUnsignedInt(this, (int)_properties.size(), name, title, description, value, widget, min, max)); |
| 130 | } |
| 131 | |
| 132 | void IPLProcess::addProcessPropertyDouble(const char *name, const char *title, const char *description, double value, IPLProcessWidgetType widget, double min, double max) |
| 133 | { |