------------------------------------------------------------------------------
| 166 | |
| 167 | //------------------------------------------------------------------------------ |
| 168 | void vtkSelectionNode::ShallowCopy(vtkSelectionNode* input) |
| 169 | { |
| 170 | if (!input) |
| 171 | { |
| 172 | return; |
| 173 | } |
| 174 | this->Initialize(); |
| 175 | this->Properties->Copy(input->Properties, 0); |
| 176 | this->SelectionData->ShallowCopy(input->SelectionData); |
| 177 | this->SetQueryString(input->GetQueryString()); |
| 178 | this->Modified(); |
| 179 | } |
| 180 | |
| 181 | //------------------------------------------------------------------------------ |
| 182 | void vtkSelectionNode::DeepCopy(vtkSelectionNode* input) |
nothing calls this directly
no test coverage detected