------------------------------------------------------------------------------
| 80 | |
| 81 | //------------------------------------------------------------------------------ |
| 82 | void vtkInformationObjectBaseVectorKey::Append(vtkInformation* info, vtkObjectBase* aValue) |
| 83 | { |
| 84 | if (!this->ValidateDerivedType(info, aValue)) |
| 85 | { |
| 86 | return; |
| 87 | } |
| 88 | // |
| 89 | vtkInformationObjectBaseVectorValue* base = this->GetObjectBaseVector(info); |
| 90 | // |
| 91 | if (aValue != nullptr) |
| 92 | { |
| 93 | aValue->Register(base); |
| 94 | } |
| 95 | // |
| 96 | base->GetVector().emplace_back(aValue); |
| 97 | } |
| 98 | |
| 99 | //------------------------------------------------------------------------------ |
| 100 | void vtkInformationObjectBaseVectorKey::Set(vtkInformation* info, vtkObjectBase* aValue, int i) |
nothing calls this directly
no test coverage detected