------------------------------------------------------------------------------
| 487 | |
| 488 | //------------------------------------------------------------------------------ |
| 489 | vtkXMLWriter* vtkXMLCompositeDataWriter::GetWriter(int index) |
| 490 | { |
| 491 | int size = static_cast<int>(this->Internal->Writers.size()); |
| 492 | if (index >= 0 && index < size) |
| 493 | { |
| 494 | return this->Internal->Writers[index]; |
| 495 | } |
| 496 | return nullptr; |
| 497 | } |
| 498 | |
| 499 | //------------------------------------------------------------------------------ |
| 500 | void vtkXMLCompositeDataWriter::SplitFileName() |
no test coverage detected