]> Creatis software - clitk.git/blob - itk/clitkPasteImageFilter.hxx
348d85898035db8dedf310c8a078293dedeb76c9
[clitk.git] / itk / clitkPasteImageFilter.hxx
1 /*=========================================================================
2  *
3  *  COPY OF itkPasteImageFilter to remove VerifyInputInformation
4  *
5  *=========================================================================*/
6
7 #ifndef __clitkPasteImageFilter_hxx
8 #define __clitkPasteImageFilter_hxx
9
10 #include "itkPasteImageFilter.h"
11
12 namespace clitk
13 {
14   template< class TInputImage, class TSourceImage, class TOutputImage >
15   PasteImageFilter< TInputImage, TSourceImage, TOutputImage >
16   ::PasteImageFilter()
17   {
18     this->ProcessObject::SetNumberOfRequiredInputs(2);
19
20     this->InPlaceOff();
21     this->m_DestinationIndex.Fill(0);
22   }
23
24 } // end namespace clitk
25
26 #endif