00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkImageDuplicator.h,v $ 00005 Language: C++ 00006 Date: $Date: 2005/01/21 20:16:26 $ 00007 Version: $Revision: 1.3 $ 00008 00009 Copyright (c) Insight Software Consortium. All rights reserved. 00010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef __itkImageDuplicator_h 00018 #define __itkImageDuplicator_h 00019 00020 #include "itkObject.h" 00021 #include "itkImage.h" 00022 00023 namespace itk 00024 { 00025 00028 template <class TInputImage> 00029 class ITK_EXPORT ImageDuplicator : public Object 00030 { 00031 public: 00032 00034 typedef ImageDuplicator Self; 00035 typedef Object Superclass; 00036 typedef SmartPointer<Self> Pointer; 00037 typedef SmartPointer<const Self> ConstPointer; 00038 00040 itkNewMacro(Self); 00041 00043 itkTypeMacro(ImageDuplicator, Object); 00044 00046 typedef TInputImage ImageType; 00047 typedef typename TInputImage::Pointer ImagePointer; 00048 typedef typename TInputImage::ConstPointer ImageConstPointer; 00049 typedef typename TInputImage::PixelType PixelType; 00050 typedef typename TInputImage::IndexType IndexType; 00051 00052 itkStaticConstMacro(ImageDimension, unsigned int, 00053 ImageType::ImageDimension); 00054 00056 itkSetConstObjectMacro(InputImage,ImageType); 00057 00059 itkGetObjectMacro(Output,ImageType); 00060 00062 void Update(void); 00063 00064 protected: 00065 ImageDuplicator(); 00066 virtual ~ImageDuplicator() {}; 00067 void PrintSelf(std::ostream& os, Indent indent) const; 00068 00069 private: 00070 ImageDuplicator(const Self&); //purposely not implemented 00071 void operator=(const Self&); //purposely not implemented 00072 00073 ImageConstPointer m_InputImage; 00074 ImagePointer m_Output; 00075 unsigned long m_InternalImageTime; 00076 00077 }; 00078 00079 } // end namespace itk 00080 00081 00082 #ifndef ITK_MANUAL_INSTANTIATION 00083 #include "itkImageDuplicator.txx" 00084 #endif 00085 00086 #endif /* __itkImageDuplicator_h */ 00087