00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkGEAdwImageIOFactory.h,v $ 00005 Language: C++ 00006 Date: $Date: 2007-12-03 13:13:09 $ 00007 Version: $Revision: 1.7 $ 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 __itkGEAdwImageIOFactory_h 00018 #define __itkGEAdwImageIOFactory_h 00019 00020 #ifdef _MSC_VER 00021 #pragma warning ( disable : 4786 ) 00022 #endif 00023 00024 #include "itkObjectFactoryBase.h" 00025 #include "itkImageIOBase.h" 00026 00027 namespace itk 00028 { 00032 class ITK_EXPORT GEAdwImageIOFactory : public ObjectFactoryBase 00033 { 00034 public: 00036 typedef GEAdwImageIOFactory Self; 00037 typedef ObjectFactoryBase Superclass; 00038 typedef SmartPointer<Self> Pointer; 00039 typedef SmartPointer<const Self> ConstPointer; 00040 00042 virtual const char* GetITKSourceVersion(void) const; 00043 virtual const char* GetDescription(void) const; 00045 00047 itkFactorylessNewMacro(Self); 00048 00050 itkTypeMacro(GEAdwImageIOFactory, ObjectFactoryBase); 00051 00053 static void RegisterOneFactory(void) 00054 { 00055 GEAdwImageIOFactory::Pointer metaFactory = GEAdwImageIOFactory::New(); 00056 ObjectFactoryBase::RegisterFactory(metaFactory); 00057 } 00059 00060 protected: 00061 GEAdwImageIOFactory(); 00062 ~GEAdwImageIOFactory(); 00063 virtual void PrintSelf(std::ostream& os, Indent indent) const; 00064 00065 private: 00066 GEAdwImageIOFactory(const Self&); //purposely not implemented 00067 void operator=(const Self&); //purposely not implemented 00068 00069 }; 00070 00071 } // end namespace itk 00072 00073 #endif 00074