------------------------------------------------------------------------------
| 1001 | |
| 1002 | //------------------------------------------------------------------------------ |
| 1003 | bool vtkHDFWriter::AppendCellTypes(hid_t group, vtkUnstructuredGrid* input) |
| 1004 | { |
| 1005 | if (!this->Impl->AddOrCreateDataset(group, "Types", H5T_STD_U8LE, input->GetCellTypes())) |
| 1006 | { |
| 1007 | vtkErrorMacro(<< "Can not create Types dataset when creating: " << this->FileName); |
| 1008 | return false; |
| 1009 | } |
| 1010 | return true; |
| 1011 | } |
| 1012 | |
| 1013 | //------------------------------------------------------------------------------ |
| 1014 | bool vtkHDFWriter::AppendOffsets(hid_t group, vtkCellArray* input) |
no test coverage detected