------------------------------------------------------------------------------
| 233 | |
| 234 | //------------------------------------------------------------------------------ |
| 235 | void vtkAnnotationLink::ShallowCopyToOutput( |
| 236 | vtkAnnotationLayers* input, vtkAnnotationLayers* output, vtkSelection* sel) |
| 237 | { |
| 238 | output->ShallowCopy(input); |
| 239 | |
| 240 | if (input->GetCurrentSelection()) |
| 241 | { |
| 242 | sel->ShallowCopy(input->GetCurrentSelection()); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | //------------------------------------------------------------------------------ |
| 247 | int vtkAnnotationLink::FillInputPortInformation(int port, vtkInformation* info) |
no test coverage detected