------------------------------------------------------------------------------
| 104 | |
| 105 | //------------------------------------------------------------------------------ |
| 106 | void vtkXMLDataElement::RemoveAllAttributes() |
| 107 | { |
| 108 | for (int i = 0; i < this->NumberOfAttributes; ++i) |
| 109 | { |
| 110 | delete[] this->AttributeNames[i]; |
| 111 | delete[] this->AttributeValues[i]; |
| 112 | } |
| 113 | this->NumberOfAttributes = 0; |
| 114 | } |
| 115 | |
| 116 | //------------------------------------------------------------------------------ |
| 117 | void vtkXMLDataElement::RemoveAllNestedElements() |
no outgoing calls
no test coverage detected