------------------------------------------------------------------------------
| 399 | |
| 400 | //------------------------------------------------------------------------------ |
| 401 | int vtkCommunicator::ReceiveElementalDataObject(vtkDataObject* data, int remoteHandle, int tag) |
| 402 | { |
| 403 | VTK_CREATE(vtkCharArray, buffer); |
| 404 | if (!this->Receive(buffer, remoteHandle, tag)) |
| 405 | { |
| 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | return vtkCommunicator::UnMarshalDataObject(buffer, data); |
| 410 | } |
| 411 | |
| 412 | int vtkCommunicator::Receive(vtkDataArray* data, int remoteHandle, int tag) |
| 413 | { |
no test coverage detected