MCPcopy Create free account
hub / github.com/Kitware/VTK / DeepCopy

Method DeepCopy

Common/DataModel/vtkSelectionNode.cxx:182–193  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

180
181//------------------------------------------------------------------------------
182void 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//------------------------------------------------------------------------------
196void vtkSelectionNode::SetContentType(int type)

Callers

nothing calls this directly

Calls 5

InitializeMethod · 0.95
SetQueryStringMethod · 0.80
GetQueryStringMethod · 0.80
CopyMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected