------------------------------------------------------------------------------
| 180 | |
| 181 | //------------------------------------------------------------------------------ |
| 182 | void vtkSelectionNode::DeepCopy(vtkSelectionNode* input) |
| 183 | { |
| 184 | if (!input) |
| 185 | { |
| 186 | return; |
| 187 | } |
| 188 | this->Initialize(); |
| 189 | this->Properties->Copy(input->Properties, 1); |
| 190 | this->SelectionData->DeepCopy(input->SelectionData); |
| 191 | this->SetQueryString(input->GetQueryString()); |
| 192 | this->Modified(); |
| 193 | } |
| 194 | |
| 195 | //------------------------------------------------------------------------------ |
| 196 | void vtkSelectionNode::SetContentType(int type) |
nothing calls this directly
no test coverage detected