@@ -2109,7 +2109,7 @@ \subsection{Indentation and Tabs}
21092109 itkNewMacro(Self);
21102110
21112111 /** Run-time type information (and related methods) */
2112- itkTypeMacro (SpecializedFilter, ImageToImageFilter );
2112+ itkOverrideGetNameOfClassMacro (SpecializedFilter);
21132113
21142114 ...
21152115};
@@ -2228,7 +2228,7 @@ \subsection{White Spaces}
22282228 itkNewMacro(Self);
22292229
22302230 /** Run-time type information (and related methods) */
2231- itkTypeMacro (SpecializedFilter, ImageToImageFilter );
2231+ itkOverrideGetNameOfClassMacro (SpecializedFilter);
22322232
22332233 // ...
22342234};
@@ -3228,9 +3228,8 @@ \section{Using Standard Macros}
32283228\item \code {itkNewMacro(T)}: Creates the static class method \code {New()}
32293229that interacts with the object factory to instantiate objects. The method
32303230returns a \code {SmartPointer<T>} properly reference counted.
3231- \item \code {itkTypeMacro(thisClass, superclass)}: Adds standard methods a
3232- class, mainly type information. Adds the \code {GetNameOfClass()} method to the
3233- class.
3231+ \item \code {itkOverrideGetNameOfClassMacro(thisClass)}: Adds an override of
3232+ the \code {GetNameOfClass()} method to the class.
32343233\item \code {ITK\_ DISALLOW\_ COPY\_ AND\_ ASSIGN(TypeName)}: Disallow copying by
32353234declaring copy constructor and assignment operator deleted. This must be
32363235declared in the \textbf {public } section.
@@ -3297,7 +3296,7 @@ \section{Using Standard Macros}
32973296itkNewMacro(Self);
32983297
32993298/** Run-time type information (and related methods). */
3300- itkTypeMacro (Image, ImageBase );
3299+ itkOverrideGetNameOfClassMacro (Image);
33013300\end {minted }
33023301\normalsize
33033302
0 commit comments