/*========================================================================= 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 "itkWarpImageCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkWarpImageCommand.h" #include "itkVersion.h" namespace itk { WarpImageCommandFactory::WarpImageCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkWarpImageCommand", "Warp an image give a deformation field", 1, CreateObjectFunction::New()); } WarpImageCommandFactory::~WarpImageCommandFactory() { } const char* WarpImageCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* WarpImageCommandFactory::GetDescription() const { return "Warp an image give a deformation field"; } } // end namespace itk