X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_ShapeType.h;h=fd6e24e1888cd45f9a81070565c545e977d53497;hb=e98f5ede19029ac09ae9fe78061a4485bd6b86b5;hp=5d30779b107c5c88a3906bb53683fcc5e380ee82;hpb=4ed768a69e4462c72fad62fc843272cbf403c4ff;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_ShapeType.h b/src/GeomValidators/GeomValidators_ShapeType.h index 5d30779b1..fd6e24e18 100644 --- a/src/GeomValidators/GeomValidators_ShapeType.h +++ b/src/GeomValidators/GeomValidators_ShapeType.h @@ -40,7 +40,7 @@ class GeomValidators_ShapeType : public ModelAPI_AttributeValidator public: GEOMVALIDATORS_EXPORT GeomValidators_ShapeType() {} - //! returns true if attribute is valid + //! Returns true if attribute has shape type listed in the parameter arguments //! \param theAttribute the checked attribute //! \param theArguments arguments of the attribute GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute, @@ -51,26 +51,26 @@ protected: /// \param theType a string value static TypeOfShape shapeType(const std::string& theType); - bool isValidArgument(const AttributePtr& theAttribute, - const std::string& theArgument) const; - /// Returns true if the attibute's object type satisfies the argument value /// \param theAttribute a checked attribute /// \param theArgument a parameter bool isValidAttribute(const AttributePtr& theAttribute, - const TypeOfShape theShapeType) const; + const TypeOfShape theShapeType, + std::string& theError) const; /// Returns true if the attibute's object type satisfies the argument value /// \param theAttribute a checked object /// \param theShapeType a shape type bool isValidObject(const ObjectPtr& theObject, - const TypeOfShape theShapeType) const; + const TypeOfShape theShapeType, + std::string& theError) const; /// Returns true if the attibute's object type satisfies the argument value /// \param theShape a checked shape /// \param theShapeType a shape type bool isValidShape(const GeomShapePtr theShape, - const TypeOfShape theShapeType) const; + const TypeOfShape theShapeType, + std::string& theError) const; };