00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkImageIOFactory.h,v $ 00005 Language: C++ 00006 Date: $Date: 2002/09/26 11:17:17 $ 00007 Version: $Revision: 1.9 $ 00008 00009 Copyright (c) 2002 Insight 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 __itkImageIOFactory_h 00018 #define __itkImageIOFactory_h 00019 00020 #include "itkObject.h" 00021 #include "itkImageIOBase.h" 00022 00023 namespace itk 00024 { 00028 class ITK_EXPORT ImageIOFactory : public Object 00029 { 00030 public: 00032 typedef ImageIOFactory Self; 00033 typedef Object Superclass; 00034 typedef SmartPointer<Self> Pointer; 00035 typedef SmartPointer<const Self> ConstPointer; 00036 00040 itkTypeMacro(ImageIOFactory, Object); 00041 00043 typedef ::itk::ImageIOBase::Pointer ImageIOBasePointer; 00044 00046 static ImageIOBasePointer CreateImageIO(const char* path); 00047 00049 static void RegisterBuiltInFactories(); 00050 00051 protected: 00052 ImageIOFactory(); 00053 ~ImageIOFactory(); 00054 00055 private: 00056 ImageIOFactory(const Self&); //purposely not implemented 00057 void operator=(const Self&); //purposely not implemented 00058 00059 }; 00060 00061 00062 } // end namespace itk 00063 00064 #endif