------------------------------------------------------------------------------
| 66 | |
| 67 | //------------------------------------------------------------------------------ |
| 68 | void vtkInformationIntegerKey::ShallowCopy(vtkInformation* from, vtkInformation* to) |
| 69 | { |
| 70 | if (this->Has(from)) |
| 71 | { |
| 72 | this->Set(to, this->Get(from)); |
| 73 | } |
| 74 | else |
| 75 | { |
| 76 | this->SetAsObjectBase(to, nullptr); // doesn't exist in from, so remove the key |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | //------------------------------------------------------------------------------ |
| 81 | void vtkInformationIntegerKey::Print(ostream& os, vtkInformation* info) |
nothing calls this directly
no test coverage detected