diff --git a/include/rtkFFTHilbertImageFilter.h b/include/rtkFFTHilbertImageFilter.h index a64920758..e747fb43f 100644 --- a/include/rtkFFTHilbertImageFilter.h +++ b/include/rtkFFTHilbertImageFilter.h @@ -6,7 +6,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0.txt + * https://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -42,7 +42,7 @@ class ITK_EXPORT FFTHilbertImageFilter : public rtk::FFTProjectionsConvolutionImageFilter { public: - ITK_DISALLOW_COPY_AND_ASSIGN(FFTHilbertImageFilter); + ITK_DISALLOW_COPY_AND_MOVE(FFTHilbertImageFilter); /** Standard class type alias. */ using Self = FFTHilbertImageFilter; @@ -83,7 +83,11 @@ class ITK_EXPORT FFTHilbertImageFilter } /** Runtime information support. */ +#ifdef itkOverrideGetNameOfClassMacro + itkOverrideGetNameOfClassMacro(FFTHilbertImageFilter); +#else itkTypeMacro(FFTHilbertImageFilter, FFTProjectionsConvolutionImageFilter); +#endif protected: FFTHilbertImageFilter() = default;