Points: modernize C++: use equals default

This commit is contained in:
wmayer
2023-08-22 11:06:53 +02:00
committed by wwmayer
parent da00501288
commit 162f480c84
18 changed files with 23 additions and 144 deletions

View File

@@ -51,15 +51,7 @@ TYPESYSTEM_SOURCE(Points::PropertyGreyValueList, App::PropertyLists)
TYPESYSTEM_SOURCE(Points::PropertyNormalList, App::PropertyLists)
TYPESYSTEM_SOURCE(Points::PropertyCurvatureList , App::PropertyLists)
PropertyGreyValueList::PropertyGreyValueList()
{
}
PropertyGreyValueList::~PropertyGreyValueList()
{
}
PropertyGreyValueList::PropertyGreyValueList() = default;
void PropertyGreyValueList::setSize(int newSize)
{
@@ -221,15 +213,7 @@ void PropertyGreyValueList::removeIndices( const std::vector<unsigned long>& uIn
setValues(remainValue);
}
PropertyNormalList::PropertyNormalList()
{
}
PropertyNormalList::~PropertyNormalList()
{
}
PropertyNormalList::PropertyNormalList() = default;
void PropertyNormalList::setSize(int newSize)
{
@@ -433,15 +417,7 @@ void PropertyNormalList::removeIndices( const std::vector<unsigned long>& uIndic
setValues(remainValue);
}
PropertyCurvatureList::PropertyCurvatureList()
{
}
PropertyCurvatureList::~PropertyCurvatureList()
{
}
PropertyCurvatureList::PropertyCurvatureList() = default;
void PropertyCurvatureList::setValue(const CurvatureInfo& lValue)
{