------------------------------------------------------------------------------
| 437 | |
| 438 | //------------------------------------------------------------------------------ |
| 439 | void vtkXMLTableWriter::WriteAppendedPieceAttributes(int index) |
| 440 | { |
| 441 | if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError) |
| 442 | { |
| 443 | return; |
| 444 | } |
| 445 | this->NumberOfColsPositions[index] = this->ReserveAttributeSpace("NumberOfCols"); |
| 446 | if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError) |
| 447 | { |
| 448 | return; |
| 449 | } |
| 450 | this->NumberOfRowsPositions[index] = this->ReserveAttributeSpace("NumberOfRows"); |
| 451 | if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError) |
| 452 | { |
| 453 | return; |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | //------------------------------------------------------------------------------ |
| 458 | void vtkXMLTableWriter::WriteAppendedPiece(int index, vtkIndent indent) |
no test coverage detected