| 114 | } |
| 115 | |
| 116 | void IPLProcess::addOutput(std::string name, IPLDataType type) |
| 117 | { |
| 118 | // automatically increment ID |
| 119 | _outputs.push_back(IPLProcessIO((int)_outputs.size(), name, type)); |
| 120 | } |
| 121 | |
| 122 | void IPLProcess::addProcessPropertyInt(const char *name, const char *title, const char *description, int value, IPLProcessWidgetType widget, int min, int max) |
| 123 | { |
nothing calls this directly
no test coverage detected