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

Method DeepCopy

Common/DataModel/vtkTable.cxx:740–750  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

738
739//------------------------------------------------------------------------------
740void vtkTable::DeepCopy(vtkDataObject* src)
741{
742 auto mkhold = vtkMemkindRAII(this->GetIsInMemkind());
743 if (vtkTable* const table = vtkTable::SafeDownCast(src))
744 {
745 this->RowData->DeepCopy(table->RowData);
746 this->Modified();
747 }
748
749 Superclass::DeepCopy(src);
750}
751
752//------------------------------------------------------------------------------
753vtkFieldData* vtkTable::GetAttributesAsFieldData(int type)

Callers

nothing calls this directly

Calls 4

vtkMemkindRAIIFunction · 0.85
GetIsInMemkindMethod · 0.80
DeepCopyFunction · 0.70
ModifiedMethod · 0.45

Tested by

no test coverage detected