/*========================================================================= Program: Tensor ToolKit - TTK Module: $URL$ Language: C++ Date: $Date$ Version: $Revision$ Copyright (c) INRIA 2010. All rights reserved. See LICENSE.txt 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 "itkImageConverterCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkImageConverterCommand.h" #include "itkVersion.h" namespace itk { ImageConverterCommandFactory::ImageConverterCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkImageConverterCommand", "Convert an image file into another format", 1, CreateObjectFunction::New()); } ImageConverterCommandFactory::~ImageConverterCommandFactory() { } const char* ImageConverterCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* ImageConverterCommandFactory::GetDescription() const { return "Convert an image file into another format"; } } // end namespace itk