| 327 | } |
| 328 | |
| 329 | void |
| 330 | NodeMetadata::setComponentsType(int inputNb,const std::string& componentsType) |
| 331 | { |
| 332 | if (inputNb == -1) { |
| 333 | _imp->outputData.componentsType = componentsType; |
| 334 | } else { |
| 335 | if ( inputNb < (int)_imp->inputsData.size() ) { |
| 336 | _imp->inputsData[inputNb].componentsType = componentsType; |
| 337 | } |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | std::string |
| 342 | NodeMetadata::getComponentsType(int inputNb) const |
no test coverage detected