| 216 | } |
| 217 | |
| 218 | InputBuffer* Engine::getOutput(const std::string& id) |
| 219 | { |
| 220 | ProcessingStep* ps = getOutputNode(id); |
| 221 | if (!ps) return NULL; |
| 222 | return ps->m_input[0].data; |
| 223 | } |
| 224 | |
| 225 | ParameterMap Engine::getOutputParams(const std::string& id) |
| 226 | { |
no outgoing calls
no test coverage detected