------------------------------------------------------------------------------
| 211 | |
| 212 | //------------------------------------------------------------------------------ |
| 213 | void vtkXMLHyperTreeGridReader::GetOutputUpdateExtent(int& piece, int& numberOfPieces) |
| 214 | { |
| 215 | vtkInformation* outInfo = this->GetCurrentOutputInformation(); |
| 216 | piece = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()); |
| 217 | numberOfPieces = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); |
| 218 | } |
| 219 | |
| 220 | //------------------------------------------------------------------------------ |
| 221 | void vtkXMLHyperTreeGridReader::SetupOutputTotals() {} |
nothing calls this directly
no test coverage detected