------------------------------------------------------------------------------
| 192 | |
| 193 | //------------------------------------------------------------------------------ |
| 194 | int vtkInformationExecutivePortVectorKey::Length(vtkInformation* info) |
| 195 | { |
| 196 | vtkInformationExecutivePortVectorValue* v = |
| 197 | static_cast<vtkInformationExecutivePortVectorValue*>(this->GetAsObjectBase(info)); |
| 198 | return v ? static_cast<int>(v->Executives.size()) : 0; |
| 199 | } |
| 200 | |
| 201 | //------------------------------------------------------------------------------ |
| 202 | void vtkInformationExecutivePortVectorKey::ShallowCopy(vtkInformation* from, vtkInformation* to) |