------------------------------------------------------------------------------
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | void vtkXMLWriterBase::SetIdType(int t) |
| 67 | { |
| 68 | #if !defined(VTK_USE_64BIT_IDS) |
| 69 | if (t == vtkXMLWriterBase::Int64) |
| 70 | { |
| 71 | vtkErrorMacro("Support for Int64 vtkIdType not compiled in VTK."); |
| 72 | return; |
| 73 | } |
| 74 | #endif |
| 75 | vtkDebugMacro(<< this->GetClassName() << " (" << this << "): setting IdType to " << t); |
| 76 | if (this->IdType != t) |
| 77 | { |
| 78 | this->IdType = t; |
| 79 | this->Modified(); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | //------------------------------------------------------------------------------ |
| 84 | void vtkXMLWriterBase::SetCompressorType(int compressorType) |
no test coverage detected