------------------------------------------------------------------------------
| 1392 | |
| 1393 | //------------------------------------------------------------------------------ |
| 1394 | void vtkImageData::DeepCopy(vtkDataObject* dataObject) |
| 1395 | { |
| 1396 | auto mkhold = vtkMemkindRAII(this->GetIsInMemkind()); |
| 1397 | vtkImageData* imageData = vtkImageData::SafeDownCast(dataObject); |
| 1398 | |
| 1399 | if (imageData != nullptr) |
| 1400 | { |
| 1401 | this->InternalImageDataCopy(imageData); |
| 1402 | } |
| 1403 | |
| 1404 | // Do superclass |
| 1405 | this->Superclass::DeepCopy(dataObject); |
| 1406 | } |
| 1407 | |
| 1408 | //------------------------------------------------------------------------------ |
| 1409 | // This copies all the local variables (but not objects). |
no test coverage detected