------------------------------------------------------------------------------
| 202 | |
| 203 | //------------------------------------------------------------------------------ |
| 204 | void vtkXMLPTableReader::PieceProgressCallback() |
| 205 | { |
| 206 | float width = this->ProgressRange[1] - this->ProgressRange[0]; |
| 207 | float pieceProgress = this->PieceReaders[this->Piece]->GetProgress(); |
| 208 | float progress = this->ProgressRange[0] + pieceProgress * width; |
| 209 | this->UpdateProgressDiscrete(progress); |
| 210 | if (this->AbortExecute) |
| 211 | { |
| 212 | this->PieceReaders[this->Piece]->SetAbortExecute(1); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | //------------------------------------------------------------------------------ |
| 217 | void vtkXMLPTableReader::SetupNextPiece() |
nothing calls this directly
no test coverage detected