------------------------------------------------------------------------------
| 738 | |
| 739 | //------------------------------------------------------------------------------ |
| 740 | void 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 | //------------------------------------------------------------------------------ |
| 753 | vtkFieldData* vtkTable::GetAttributesAsFieldData(int type) |
nothing calls this directly
no test coverage detected