MCPcopy Create free account
hub / github.com/Kitware/VTK / SetHeaderType

Method SetHeaderType

IO/XML/vtkXMLWriterBase.cxx:50–63  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

48
49//------------------------------------------------------------------------------
50void 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//------------------------------------------------------------------------------
66void vtkXMLWriterBase::SetIdType(int t)

Callers 10

SetHeaderTypeToUInt32Function · 0.80
SetHeaderTypeToUInt64Function · 0.80
WriteInternalMethod · 0.80
CreateWritersMethod · 0.80
WritePieceMethod · 0.80
WriteInternalMethod · 0.80
WritePieceMethod · 0.80
WritePieceMethod · 0.80
GetWriterMethod · 0.80
OpenFileMethod · 0.80

Calls 2

GetClassNameMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected