/*========================================================================= 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 "itkWarpFibersCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkWarpFibersCommand.h" #include "itkVersion.h" namespace itk { WarpFibersCommandFactory::WarpFibersCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkWarpFibersCommand", "Warp fibers w.r.t. a linear matrix or a deformation field", 1, CreateObjectFunction::New()); } WarpFibersCommandFactory::~WarpFibersCommandFactory() { } const char* WarpFibersCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* WarpFibersCommandFactory::GetDescription() const { return "Warp fibers w.r.t. a linear matrix or a deformation field"; } } // end namespace itk