X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeValidator.h;h=142c91c233689bb32a729ca6e232263c3b8b2a9f;hb=f5c7bb3100ed321392da42f61c2ab505833ec61a;hp=aa0680cbb5311c5939590d570595af06697c7765;hpb=b5d86ab8997bb4c6c486da17593633ff803f667a;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeValidator.h b/src/ModelAPI/ModelAPI_AttributeValidator.h index aa0680cbb..142c91c23 100644 --- a/src/ModelAPI/ModelAPI_AttributeValidator.h +++ b/src/ModelAPI/ModelAPI_AttributeValidator.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_AttributeValidator.h // Created: 4 Sep 2014 // Author: Mikhail PONIKAROV @@ -5,6 +7,7 @@ #ifndef ModelAPI_AttributeValidator_H #define ModelAPI_AttributeValidator_H +#include #include #include @@ -14,11 +17,15 @@ class ModelAPI_AttributeValidator : public ModelAPI_Validator { public: - //! returns true if attribute is valid + //! \returns true if attribute is valid //! \param theAttribute the checked attribute //! \param theArguments arguments of the attribute + //! \param theError the error string message if validation fails virtual bool isValid(const AttributePtr& theAttribute, - const std::list& theArguments) const = 0; + const std::list& theArguments, + std::string& theError) const = 0; + + MODELAPI_EXPORT ~ModelAPI_AttributeValidator(); }; #endif