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

Method SetIdType

IO/XML/vtkXMLWriterBase.cxx:66–81  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

64
65//------------------------------------------------------------------------------
66void 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//------------------------------------------------------------------------------
84void vtkXMLWriterBase::SetCompressorType(int compressorType)

Callers 7

SetIdTypeToInt32Function · 0.80
SetIdTypeToInt64Function · 0.80
WriteInternalMethod · 0.80
CreateWritersMethod · 0.80
WriteInternalMethod · 0.80
GetWriterMethod · 0.80
OpenFileMethod · 0.80

Calls 2

GetClassNameMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected