File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
SoftwareGuide/Latex/DevelopmentGuidelines Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -521,9 +521,12 @@ \section{Filter Conventions}
521521\end {minted }
522522
523523The default constructor should be \code {protected}, and provide sensible
524- defaults (usually zero) for all parameters. The copy constructor and
525- assignment operator should be declared \code {private} and not implemented,
526- to prevent instantiating the filter without the factory methods (above).
524+ defaults (usually zero) for all parameters. The copy constructor and
525+ assignment operator should not implemented in order to prevent instantiating
526+ the filter without the factory methods (above). They should be declared in the
527+ \code {public} section using the \code {ITK\_ DISALLOW\_ COPY\_ AND\_ ASSIGN} macro
528+ (see Section~\ref {sec:UsingStandardMacros } on page
529+ \pageref {sec:UsingStandardMacros }).
527530
528531Finally, the template implementation code (in the \code {.hxx} file) should
529532be included, bracketed by a test for manual instantiation, thus:
You can’t perform that action at this time.
0 commit comments