| 231 | |
| 232 | template<class T> |
| 233 | inline void deserializeProperty(IPLProcessProperty::SerializedData data, IPLProcessWidgetType &widget, T &value) |
| 234 | { |
| 235 | deserializeValue(data.widget,widget); |
| 236 | deserializeValue(data.value,value); |
| 237 | } |
| 238 | |
| 239 | IPLProcessProperty::IPLProcessProperty(int position, const char* name, const char *title, const char *description, IPLProcess *process, IPLProcessWidgetType widget): |
| 240 | _position(position), |
no test coverage detected