Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

COMP: Move ITK_DISALLOW_COPY_AND_ASSIGN calls to public section. #9

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/itkCartesianToPolarTransform.h
Expand Up @@ -59,6 +59,8 @@ class ITK_TEMPLATE_EXPORT CartesianToPolarTransform :
public Transform< TParametersValueType, NDimensions, NDimensions >
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(CartesianToPolarTransform);

/** Standard class type alias. */
using Self = CartesianToPolarTransform;
using Superclass = Transform< TParametersValueType, NDimensions, NDimensions >;
Expand Down Expand Up @@ -161,8 +163,6 @@ class ITK_TEMPLATE_EXPORT CartesianToPolarTransform :
void PrintSelf(std::ostream &os, Indent indent) const override;

private:
ITK_DISALLOW_COPY_AND_ASSIGN(CartesianToPolarTransform);

InputPointType m_Center;
}; //class CartesianToPolarTransform

Expand Down
4 changes: 2 additions & 2 deletions include/itkPolarToCartesianTransform.h
Expand Up @@ -56,6 +56,8 @@ class ITK_TEMPLATE_EXPORT PolarToCartesianTransform:
public Transform< TParametersValueType, NDimensions, NDimensions >
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(PolarToCartesianTransform);

/** Standard class type alias. */
using Self = PolarToCartesianTransform;
using Superclass = Transform< TParametersValueType, NDimensions, NDimensions >;
Expand Down Expand Up @@ -158,8 +160,6 @@ class ITK_TEMPLATE_EXPORT PolarToCartesianTransform:
void PrintSelf(std::ostream &os, Indent indent) const override;

private:
ITK_DISALLOW_COPY_AND_ASSIGN(PolarToCartesianTransform);

OutputPointType m_Center;
}; //class PolarToCartesianTransform

Expand Down