MCPcopy Create free account
hub / github.com/Kitware/ParaView / GetString

Method GetString

VTKExtensions/Core/vtkStringList.cxx:50–59  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

48
49//----------------------------------------------------------------------------
50const char* vtkStringList::GetString(int idx)
51{
52 const auto& internals = (*this->Internals);
53 if (idx < 0 || idx >= static_cast<int>(internals.Strings.size()))
54 {
55 return nullptr;
56 }
57
58 return internals.Strings[idx].c_str();
59}
60
61//----------------------------------------------------------------------------
62void vtkStringList::AddString(const char* str)

Callers 15

PrintSelfMethod · 0.95
arrayListDomainDecoratorFunction · 0.45
buildWidgetMethod · 0.45
updateListMethod · 0.45
updateDomainMethod · 0.45
buildColorFieldsMenuMethod · 0.45
saveActiveDataMethod · 0.45
DetermineFileReaderMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected