------------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | void vtkXMLTableReader::GetOutputUpdateExtent(int& piece, int& numberOfPieces) |
| 68 | { |
| 69 | vtkInformation* outInfo = this->GetCurrentOutputInformation(); |
| 70 | piece = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()); |
| 71 | numberOfPieces = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); |
| 72 | } |
| 73 | |
| 74 | //------------------------------------------------------------------------------ |
| 75 | void vtkXMLTableReader::SetupOutputTotals() |
nothing calls this directly
no test coverage detected