X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_Face.h;h=63997f88bb2a12f899f0e308f0bc0022706d78a5;hb=05c54697df5d6968704e869a4a21102a0477121f;hp=2ff49551c6b9c1a8e4e1aa319f1dc8e3c99b6d1d;hpb=9bea53a5d0fc5c6aec52f4732ec45a9dcbe7354d;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_Face.h b/src/GeomValidators/GeomValidators_Face.h index 2ff49551c..63997f88b 100644 --- a/src/GeomValidators/GeomValidators_Face.h +++ b/src/GeomValidators/GeomValidators_Face.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomValidators_Face.h -// Created: 20 Mar 2015 -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2020 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_Face_H #define GeomValidators_Face_H @@ -10,8 +23,6 @@ #include "GeomValidators.h" #include "ModelAPI_AttributeValidator.h" -#include - /** * \ingroup Validators * A validator of selection @@ -21,14 +32,12 @@ class GeomValidators_Face : public ModelAPI_AttributeValidator public: GEOMVALIDATORS_EXPORT GeomValidators_Face() {} //! returns true if attribute is valid - //! \param theAttribute the checked attribute - //! \param theArguments arguments of the attribute + //! \param[in] theAttribute the checked attribute + //! \param[in] theArguments arguments of the attribute + //! \param[out] theError error message. GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute, - const std::list& theArguments) const; -protected: - /// Convert string to TypeOfFace value - /// \param theType a string value - GEOMVALIDATORS_EXPORT static GeomAbs_SurfaceType faceType(const std::string& theType); + const std::list& theArguments, + Events_InfoMessage& theError) const; }; #endif