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

Method CreateStringArray

IO/EnSight/vtkGenericEnSightReader.cxx:1548–1557  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1546
1547//------------------------------------------------------------------------------
1548char** vtkGenericEnSightReader::CreateStringArray(int numStrings)
1549{
1550 char** strings = new char*[numStrings];
1551 int i;
1552 for (i = 0; i < numStrings; ++i)
1553 {
1554 strings[i] = nullptr;
1555 }
1556 return strings;
1557}
1558
1559//------------------------------------------------------------------------------
1560void vtkGenericEnSightReader::DestroyStringArray(int numStrings, char** strings)

Calls

no outgoing calls

Tested by

no test coverage detected