| 108 | } |
| 109 | |
| 110 | void IPLProcess::addInput(std::string name, IPLDataType type) |
| 111 | { |
| 112 | // automatically increment ID |
| 113 | _inputs.push_back(IPLProcessIO((int)_inputs.size(), name, type)); |
| 114 | } |
| 115 | |
| 116 | void IPLProcess::addOutput(std::string name, IPLDataType type) |
| 117 | { |
nothing calls this directly
no test coverage detected