------------------------------------------------------------------------------
| 84 | |
| 85 | //------------------------------------------------------------------------------ |
| 86 | void vtkXMLPTableReader::GetOutputUpdateExtent(int& piece, int& numberOfPieces) |
| 87 | { |
| 88 | vtkInformation* outInfo = this->GetCurrentOutputInformation(); |
| 89 | piece = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()); |
| 90 | numberOfPieces = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); |
| 91 | } |
| 92 | |
| 93 | //------------------------------------------------------------------------------ |
| 94 | void vtkXMLPTableReader::SetupOutputTotals() |
nothing calls this directly
no test coverage detected