/*========================================================================= 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 "itkNPTRemoverCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkNPTRemoverCommand.h" #include "itkVersion.h" namespace itk { NPTRemoverCommandFactory::NPTRemoverCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkNPTRemoverCommand", "remove any Non-Postive Tensors (NPT)", 1, CreateObjectFunction::New()); } NPTRemoverCommandFactory::~NPTRemoverCommandFactory() { } const char* NPTRemoverCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* NPTRemoverCommandFactory::GetDescription() const { return "Removes any non-postive tensors"; } } // end namespace itk