Sketcher: Improve documentation of GeoEnum, PointPos and GeoElementId

This commit is contained in:
Abdullah Tahiri
2021-12-11 17:00:05 +01:00
parent 44567167ff
commit 535054e244
2 changed files with 36 additions and 11 deletions

View File

@@ -40,3 +40,8 @@ bool GeoElementId::operator==(const GeoElementId& obj) const
{
return this->GeoId == obj.GeoId && this->Pos == obj.Pos;
}
bool GeoElementId::operator!=(const GeoElementId& obj) const
{
return this->GeoId != obj.GeoId || this->Pos != obj.Pos;
}