------------------------------------------------------------------------------ The execute method created by the subclass.
| 642 | //------------------------------------------------------------------------------ |
| 643 | // The execute method created by the subclass. |
| 644 | void vtkThreadedImageAlgorithm::ThreadedExecute( |
| 645 | vtkImageData* inData, vtkImageData* outData, int extent[6], int threadId) |
| 646 | { |
| 647 | (void)inData; |
| 648 | (void)outData; |
| 649 | (void)extent; |
| 650 | (void)threadId; |
| 651 | vtkErrorMacro("Subclass should override this method!!!"); |
| 652 | } |
| 653 | VTK_ABI_NAMESPACE_END |