------------------------------------------------------------------------------
| 164 | |
| 165 | //------------------------------------------------------------------------------ |
| 166 | vtkExecutive** vtkInformationExecutivePortVectorKey::GetExecutives(vtkInformation* info) |
| 167 | { |
| 168 | vtkInformationExecutivePortVectorValue* v = |
| 169 | static_cast<vtkInformationExecutivePortVectorValue*>(this->GetAsObjectBase(info)); |
| 170 | return (v && !v->Executives.empty()) ? v->Executives.data() : nullptr; |
| 171 | } |
| 172 | |
| 173 | //------------------------------------------------------------------------------ |
| 174 | int* vtkInformationExecutivePortVectorKey::GetPorts(vtkInformation* info) |
no test coverage detected