| 120 | } |
| 121 | |
| 122 | void IPLProcess::addProcessPropertyInt(const char *name, const char *title, const char *description, int value, IPLProcessWidgetType widget, int min, int max) |
| 123 | { |
| 124 | _properties[name].reset(new IPLProcessPropertyInt(this, (int)_properties.size(), name, title, description, value, widget, min, max)); |
| 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 | { |