------------------------------------------------------------------------------
| 494 | |
| 495 | //------------------------------------------------------------------------------ |
| 496 | void vtkGraph::SetDistributedGraphHelper(vtkDistributedGraphHelper* helper) |
| 497 | { |
| 498 | if (this->DistributedHelper) |
| 499 | this->DistributedHelper->AttachToGraph(nullptr); |
| 500 | |
| 501 | this->DistributedHelper = helper; |
| 502 | if (this->DistributedHelper) |
| 503 | { |
| 504 | this->DistributedHelper->Register(this); |
| 505 | this->DistributedHelper->AttachToGraph(this); |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | //------------------------------------------------------------------------------ |
| 510 | vtkDistributedGraphHelper* vtkGraph::GetDistributedGraphHelper() |
no test coverage detected