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