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

Method DestroyStringArray

IO/XML/vtkXMLWriter.cxx:3016–3023  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

3014
3015//------------------------------------------------------------------------------
3016void vtkXMLWriter::DestroyStringArray(int numStrings, char** strings)
3017{
3018 for (int i = 0; i < numStrings; ++i)
3019 {
3020 delete[] strings[i];
3021 }
3022 delete[] strings;
3023}
3024
3025//------------------------------------------------------------------------------
3026void vtkXMLWriter::GetProgressRange(float range[2])

Callers 11

WriteFieldDataInlineMethod · 0.95
WritePointDataInlineMethod · 0.95
WriteCellDataInlineMethod · 0.95
WriteCellDataAppendedMethod · 0.95
WritePPointDataMethod · 0.95
WritePCellDataMethod · 0.95
WriteRowDataAppendedMethod · 0.45
WriteRowDataInlineMethod · 0.45
WritePRowDataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected