MCPcopy Create free account
hub / github.com/Kitware/VTK / ~vtkXMLDataElement

Method ~vtkXMLDataElement

Common/DataModel/vtkXMLDataElement.cxx:52–65  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

50
51//------------------------------------------------------------------------------
52vtkXMLDataElement::~vtkXMLDataElement()
53{
54 this->SetName(nullptr);
55 this->SetId(nullptr);
56
57 this->RemoveAllAttributes();
58 delete[] this->AttributeNames;
59 delete[] this->AttributeValues;
60
61 this->RemoveAllNestedElements();
62 delete[] this->NestedElements;
63
64 free(this->CharacterData);
65}
66
67//------------------------------------------------------------------------------
68void vtkXMLDataElement::RemoveAttribute(const char* name)

Callers

nothing calls this directly

Calls 4

SetNameMethod · 0.95
RemoveAllAttributesMethod · 0.95
SetIdMethod · 0.45

Tested by

no test coverage detected