* Updates the selection in the selection link and fires a selection * change event. Subclasses should not override this method, * but should instead override ConvertSelection. * The optional second argument specifies whether the selection should be * added to the previous selection on this representation. */
| 137 | * added to the previous selection on this representation. |
| 138 | */ |
| 139 | void UpdateAnnotations(vtkAnnotationLayers* annotations) |
| 140 | { |
| 141 | this->UpdateAnnotations(annotations, false); |
| 142 | } |
| 143 | void UpdateAnnotations(vtkAnnotationLayers* annotations, bool extend); |
| 144 | |
| 145 | /** |
nothing calls this directly
no test coverage detected