Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
9bd55905
Commit
9bd55905
authored
Apr 18, 2017
by
Ludovic Hussonnois
Browse files
REFAC: add ITK_DELETE_FUNCTION.
parent
e02aaba0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Modules/Learning/Unsupervised/include/otbContingencyTable.h
View file @
9bd55905
...
...
@@ -144,8 +144,8 @@ protected:
}
private:
ContingencyTable
(
const
Self
&
);
//purposely not implemented
void
operator
=
(
const
Self
&
);
//purposely not implemented
ContingencyTable
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
void
operator
=
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
static
size_t
GetLabelsMaximumLength
(
const
LabelList
&
labels
,
size_t
maxWidth
)
{
...
...
Modules/Learning/Unsupervised/include/otbContingencyTableCalculator.h
View file @
9bd55905
...
...
@@ -87,8 +87,8 @@ protected:
//void PrintSelf(std::ostream& os, itk::Indent indent) const ITK_OVERRIDE;
private:
ContingencyTableCalculator
(
const
Self
&
);
//purposely not implemented
void
operator
=
(
const
Self
&
);
//purposely not implemented
ContingencyTableCalculator
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
void
operator
=
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
MapOfClassesType
m_LabelCount
;
unsigned
long
m_NumberOfRefClasses
;
...
...
Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModel.h
View file @
9bd55905
...
...
@@ -142,8 +142,8 @@ protected:
void
PrintSelf
(
std
::
ostream
&
os
,
itk
::
Indent
indent
)
const
;
private:
SharkKMeansMachineLearningModel
(
const
Self
&
);
//purposely not implemented
void
operator
=
(
const
Self
&
);
//purposely not implemented
SharkKMeansMachineLearningModel
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
void
operator
=
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
// Parameters set by the user
bool
m_Normalized
;
...
...
Modules/Learning/Unsupervised/include/otbSharkKMeansMachineLearningModelFactory.h
View file @
9bd55905
...
...
@@ -62,8 +62,8 @@ protected:
virtual
~
SharkKMeansMachineLearningModelFactory
();
private:
SharkKMeansMachineLearningModelFactory
(
const
Self
&
);
//purposely not implemented
void
operator
=
(
const
Self
&
);
//purposely not implemented
SharkKMeansMachineLearningModelFactory
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
void
operator
=
(
const
Self
&
)
ITK_DELETE_FUNCTION
;
//purposely not implemented
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment