/*========================================================================= 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 "itkResampleTensorImageCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkResampleTensorImageCommand.h" #include "itkVersion.h" namespace itk { ResampleTensorImageCommandFactory::ResampleTensorImageCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkResampleTensorImageCommand", "Resample tensors w.r.t. a linear matrix and a reference image", 1, CreateObjectFunction::New()); } ResampleTensorImageCommandFactory::~ResampleTensorImageCommandFactory() { } const char* ResampleTensorImageCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* ResampleTensorImageCommandFactory::GetDescription() const { return "Resample tensors w.r.t. a linear matrix and a reference image"; } } // end namespace itk