X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_DifferentShapes.h;h=7bc2462b71700e95a2271c85db800a0d18551f05;hb=aba714fbb23139b15272ed816c9a30595165106c;hp=033ef1b3c30be3486dfab6e331392d2bbc893371;hpb=5c8f1741844e01e400d18a91d6a377877d1629d9;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_DifferentShapes.h b/src/GeomValidators/GeomValidators_DifferentShapes.h index 033ef1b3c..7bc2462b7 100644 --- a/src/GeomValidators/GeomValidators_DifferentShapes.h +++ b/src/GeomValidators/GeomValidators_DifferentShapes.h @@ -1,13 +1,26 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomValidators_DifferentShapes.h -// Created: 2 Feb 2015 -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2021 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef GeomValidators_DifferentShapes_H #define GeomValidators_DifferentShapes_H -#include +#include #include #include @@ -23,9 +36,19 @@ public: /// \param[in] theAttribute an attribute to check /// \param[in] theArguments a filter parameters /// \param[out] theError error message. - MODELAPI_EXPORT virtual bool isValid(const AttributePtr& theAttribute, - const std::list& theArguments, - std::string& theError) const; + GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute, + const std::list& theArguments, + Events_InfoMessage& theError) const; + +private: + /// Check if the list contains equal shape selection. + static bool checkEquals(std::list& theAttributes); + /// Check if the list contains shape selection equal to the given one. + static bool checkEqualToCurrent(std::list& theAttributes, + const AttributePtr& theCurrentAttribute); + /// Check if shapes corresponding to the attributes are equal. + static bool isAttrShapesEqual(const AttributePtr& theAttribute, + const AttributePtr& theOtherAttribute); }; #endif