------------------------------------------------------------------------------
| 927 | |
| 928 | //------------------------------------------------------------------------------ |
| 929 | int vtkXMLHyperTreeGridWriter::FinishPrimaryElement(vtkIndent indent) |
| 930 | { |
| 931 | ostream& os = *(this->Stream); |
| 932 | |
| 933 | // End the primary element. |
| 934 | os << indent << "</" << this->GetDataSetName() << ">\n"; |
| 935 | |
| 936 | os.flush(); |
| 937 | if (os.fail()) |
| 938 | { |
| 939 | this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError); |
| 940 | return 0; |
| 941 | } |
| 942 | return 1; |
| 943 | } |
| 944 | |
| 945 | //------------------------------------------------------------------------------ |
| 946 | void vtkXMLHyperTreeGridWriter::WriteAppendedArrayDataHelper( |
no test coverage detected