------------------------------------------------------------------------------
| 438 | |
| 439 | //------------------------------------------------------------------------------ |
| 440 | void vtkStructuredGrid::DeepCopy(vtkDataObject* dataObject) |
| 441 | { |
| 442 | auto mkhold = vtkMemkindRAII(this->GetIsInMemkind()); |
| 443 | vtkStructuredGrid* grid = vtkStructuredGrid::SafeDownCast(dataObject); |
| 444 | if (grid != nullptr) |
| 445 | { |
| 446 | this->InternalStructuredGridCopy(grid); |
| 447 | } |
| 448 | this->Superclass::DeepCopy(dataObject); |
| 449 | } |
| 450 | |
| 451 | //------------------------------------------------------------------------------ |
| 452 | // This copies all the local variables (but not objects). |
nothing calls this directly
no test coverage detected