------------------------------------------------------------------------------
| 146 | |
| 147 | //------------------------------------------------------------------------------ |
| 148 | void vtkProcessGroup::Copy(vtkProcessGroup* group) |
| 149 | { |
| 150 | this->SetCommunicator(group->Communicator); |
| 151 | this->NumberOfProcessIds = group->NumberOfProcessIds; |
| 152 | for (int i = 0; i < this->NumberOfProcessIds; i++) |
| 153 | { |
| 154 | this->ProcessIds[i] = group->ProcessIds[i]; |
| 155 | } |
| 156 | } |
| 157 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected