------------------------------------------------------------------------------
| 251 | |
| 252 | //------------------------------------------------------------------------------ |
| 253 | void vtkInformationObjectBaseVectorKey::Resize(vtkInformation* info, int size) |
| 254 | { |
| 255 | vtkInformationObjectBaseVectorValue* base = this->GetObjectBaseVector(info); |
| 256 | base->GetVector().resize(size); |
| 257 | } |
| 258 | |
| 259 | //------------------------------------------------------------------------------ |
| 260 | void vtkInformationObjectBaseVectorKey::Clear(vtkInformation* info) |
nothing calls this directly
no test coverage detected