/*========================================================================= Program: Insight Segmentation & Registration Toolkit Module: $RCSfile: itkBruker2DSEQImageIOFactory.cxx,v $ Language: C++ Date: $Date: 2007/05/04 19:51:59 $ 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 "itkBruker2DSEQImageIOFactory.h" #include "itkCreateObjectFunction.h" #include "itkBruker2DSEQImageIO.h" #include "itkVersion.h" namespace itk { Bruker2DSEQImageIOFactory::Bruker2DSEQImageIOFactory() { this->RegisterOverride("itkImageIOBase", "itkBruker2DSEQImageIO", "Bruker 2DSEQ Image IO", 1, CreateObjectFunction::New()); } Bruker2DSEQImageIOFactory::~Bruker2DSEQImageIOFactory() { } const char* Bruker2DSEQImageIOFactory::GetITKSourceVersion(void) const { return ITK_SOURCE_VERSION; } const char* Bruker2DSEQImageIOFactory::GetDescription(void) const { return "Bruker 2DSEQ ImageIO Factory, allows the loading of most Bruker 2DSEQ images into Insight"; } } // end namespace itk