/*========================================================================= 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 "itkSyntheticTensorFieldGeneratorCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkSyntheticTensorFieldGeneratorCommand.h" #include "itkVersion.h" namespace itk { SyntheticTensorFieldGeneratorCommandFactory::SyntheticTensorFieldGeneratorCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkSyntheticTensorFieldGeneratorCommand", "Generate a synthetic crossing or circle tensor field", 1, CreateObjectFunction::New()); } SyntheticTensorFieldGeneratorCommandFactory::~SyntheticTensorFieldGeneratorCommandFactory() { } const char* SyntheticTensorFieldGeneratorCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* SyntheticTensorFieldGeneratorCommandFactory::GetDescription() const { return "Generate a synthetic crossing or circle tensor field"; } } // end namespace itk