------------------------------------------------------------------------------
| 48 | |
| 49 | //------------------------------------------------------------------------------ |
| 50 | void vtkXMLWriterBase::SetHeaderType(int t) |
| 51 | { |
| 52 | if (t != vtkXMLWriterBase::UInt32 && t != vtkXMLWriterBase::UInt64) |
| 53 | { |
| 54 | vtkErrorMacro(<< this->GetClassName() << " (" << this << "): cannot set HeaderType to " << t); |
| 55 | return; |
| 56 | } |
| 57 | vtkDebugMacro(<< this->GetClassName() << " (" << this << "): setting HeaderType to " << t); |
| 58 | if (this->HeaderType != t) |
| 59 | { |
| 60 | this->HeaderType = t; |
| 61 | this->Modified(); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | void vtkXMLWriterBase::SetIdType(int t) |
no test coverage detected