*
* \sa ImageToImageFilter::ThreadedGenerateData(),
* ImageToImageFilter::GenerateData() */
+#if ITK_VERSION_MAJOR >= 4
+ void ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
+ itk::ThreadIdType threadId );
+#else
void ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
int threadId );
+#endif
private:
FlexibleBinaryFunctorImageFilter(const Self&); //purposely not implemented
void
FlexibleBinaryFunctorImageFilter<TInputImage1, TInputImage2, TOutputImage, TFunction>
::ThreadedGenerateData( const OutputImageRegionType &outputRegionForThread,
+#if ITK_VERSION_MAJOR >= 4
+ itk::ThreadIdType threadId )
+#else
int threadId)
+#endif
{
const unsigned int dim = Input1ImageType::ImageDimension;