@{ * Convenience methods for sending data arrays. */
| 141 | * Convenience methods for sending data arrays. |
| 142 | */ |
| 143 | int Send(const int* data, vtkIdType length, int remoteHandle, int tag) |
| 144 | { |
| 145 | return this->SendVoidArray(data, length, VTK_INT, remoteHandle, tag); |
| 146 | } |
| 147 | int Send(const unsigned int* data, vtkIdType length, int remoteHandle, int tag) |
| 148 | { |
| 149 | return this->SendVoidArray(data, length, VTK_INT, remoteHandle, tag); |
nothing calls this directly
no test coverage detected