/*========================================================================= 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. =========================================================================*/ #ifndef _itk_NormalizeTensorsCommand_h_ #define _itk_NormalizeTensorsCommand_h_ #include "itkCommandObjectBase.h" namespace itk { class NormalizeTensorsCommand : public CommandObjectBase { public: using Self = NormalizeTensorsCommand; using Superclass = CommandObjectBase; using Pointer = SmartPointer ; using ConstPointer = SmartPointer ; itkTypeMacro(NormalizeTensorsCommand, CommandObjectBase); itkNewMacro(Self); const char *GetCommandName() override { return "normalize"; } int Execute(int nargs, const char *args[]) override; protected: NormalizeTensorsCommand(); ~NormalizeTensorsCommand() override; private: NormalizeTensorsCommand(const Self&); void operator=(const Self&); }; } #endif