00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkMRMLIDImageIOFactory.h,v $ 00005 Language: C++ 00006 Date: $Date: 2004/07/15 16:26:40 $ 00007 Version: $Revision: 1.1 $ 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 __itkMRMLIDImageIOFactory_h 00018 #define __itkMRMLIDImageIOFactory_h 00019 00020 #include "itkObjectFactoryBase.h" 00021 #include "itkImageIOBase.h" 00022 00023 #include "itkMRMLIDImageIO.h" 00024 00025 #include "itkMRMLIDIOWin32Header.h" 00026 00027 namespace itk 00028 { 00032 class MRMLIDImageIO_EXPORT MRMLIDImageIOFactory : public ObjectFactoryBase 00033 { 00034 public: 00036 typedef MRMLIDImageIOFactory 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; 00044 00046 itkFactorylessNewMacro(Self); 00047 static MRMLIDImageIOFactory* FactoryNew() { return new MRMLIDImageIOFactory;} 00048 00050 itkTypeMacro(MRMLIDImageIOFactory, ObjectFactoryBase); 00051 00053 static void RegisterOneFactory(void) 00054 { 00055 MRMLIDImageIOFactory::Pointer nrrdFactory = MRMLIDImageIOFactory::New(); 00056 ObjectFactoryBase::RegisterFactory(nrrdFactory); 00057 } 00058 00059 protected: 00060 MRMLIDImageIOFactory(); 00061 ~MRMLIDImageIOFactory(); 00062 00063 private: 00064 MRMLIDImageIOFactory(const Self&); //purposely not implemented 00065 void operator=(const Self&); //purposely not implemented 00066 00067 }; 00068 00069 00070 } 00071 00072 #endif
1.6.1