/*========================================================================= Program: Insight Segmentation & Registration Toolkit Module: $RCSfile: itkInterfileImageIOFactory.cxx,v $ Language: C++ Date: $Date: 2006/08/10 17:38:46 $ Version: $Revision: 1.1.1.1 $ Copyright (c) Insight Software Consortium. All rights reserved. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include "itkInterfileImageIOFactory.h" #include "itkCreateObjectFunction.h" #include "itkInterfileImageIO.h" #include "itkVersion.h" namespace itk { InterfileImageIOFactory::InterfileImageIOFactory() { this->RegisterOverride("itkImageIOBase", "itkInterfileImageIO", "Interfile Image IO", 1, CreateObjectFunction::New()); } InterfileImageIOFactory::~InterfileImageIOFactory() { } const char* InterfileImageIOFactory::GetITKSourceVersion(void) const { return ITK_SOURCE_VERSION; } const char* InterfileImageIOFactory::GetDescription(void) const { return "Interfile ImageIO Factory, allows the loading of Interfile images into insight"; } } // end namespace itk