Skip to content
Snippets Groups Projects
Commit 9bd55905 authored by Ludovic Hussonnois's avatar Ludovic Hussonnois
Browse files

REFAC: add ITK_DELETE_FUNCTION.

parent e02aaba0
No related branches found
No related tags found
No related merge requests found
...@@ -144,8 +144,8 @@ protected: ...@@ -144,8 +144,8 @@ protected:
} }
private: private:
ContingencyTable(const Self &); //purposely not implemented ContingencyTable(const Self &) ITK_DELETE_FUNCTION; //purposely not implemented
void operator=(const Self &); //purposely not implemented void operator=(const Self &) ITK_DELETE_FUNCTION; //purposely not implemented
static size_t GetLabelsMaximumLength(const LabelList& labels, size_t maxWidth) static size_t GetLabelsMaximumLength(const LabelList& labels, size_t maxWidth)
{ {
......
...@@ -87,8 +87,8 @@ protected: ...@@ -87,8 +87,8 @@ protected:
//void PrintSelf(std::ostream& os, itk::Indent indent) const ITK_OVERRIDE; //void PrintSelf(std::ostream& os, itk::Indent indent) const ITK_OVERRIDE;
private: private:
ContingencyTableCalculator(const Self &); //purposely not implemented ContingencyTableCalculator(const Self &) ITK_DELETE_FUNCTION; //purposely not implemented
void operator=(const Self &); //purposely not implemented void operator=(const Self &) ITK_DELETE_FUNCTION; //purposely not implemented
MapOfClassesType m_LabelCount; MapOfClassesType m_LabelCount;
unsigned long m_NumberOfRefClasses; unsigned long m_NumberOfRefClasses;
......
...@@ -142,8 +142,8 @@ protected: ...@@ -142,8 +142,8 @@ protected:
void PrintSelf(std::ostream &os, itk::Indent indent) const; void PrintSelf(std::ostream &os, itk::Indent indent) const;
private: private:
SharkKMeansMachineLearningModel(const Self &); //purposely not implemented SharkKMeansMachineLearningModel(const Self &) ITK_DELETE_FUNCTION; //purposely not implemented
void operator=(const Self &); //purposely not implemented void operator=(const Self &) ITK_DELETE_FUNCTION; //purposely not implemented
// Parameters set by the user // Parameters set by the user
bool m_Normalized; bool m_Normalized;
......
...@@ -62,8 +62,8 @@ protected: ...@@ -62,8 +62,8 @@ protected:
virtual ~SharkKMeansMachineLearningModelFactory(); virtual ~SharkKMeansMachineLearningModelFactory();
private: private:
SharkKMeansMachineLearningModelFactory(const Self &); //purposely not implemented SharkKMeansMachineLearningModelFactory(const Self &) ITK_DELETE_FUNCTION; //purposely not implemented
void operator =(const Self&); //purposely not implemented void operator =(const Self&) ITK_DELETE_FUNCTION; //purposely not implemented
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment