| 150 | } |
| 151 | |
| 152 | void IPLProcess::addProcessPropertyString(const char *name, const char *title, const char *description, const std::string &value, IPLProcessWidgetType widget) |
| 153 | { |
| 154 | _properties[name].reset(new IPLProcessPropertyString(this, (int)_properties.size(), name, title, description, value, widget)); |
| 155 | } |
| 156 | |
| 157 | void IPLProcess::addProcessPropertyVectorInt(const char *name, const char *title, const char *description, const std::vector<int> &value, IPLProcessWidgetType widget) |
| 158 | { |