------------------------------------------------------------------------------
| 50 | |
| 51 | //------------------------------------------------------------------------------ |
| 52 | vtkXMLDataElement::~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 | //------------------------------------------------------------------------------ |
| 68 | void vtkXMLDataElement::RemoveAttribute(const char* name) |
nothing calls this directly
no test coverage detected