X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Validator.h;h=06068e011c591797773219931d176935bd3811cd;hb=1dac8a1588cedf3252864550fbfe931a354b6b45;hp=cd73508d58ecb55d3b82e1590bacc6abe6b24a51;hpb=ba8a9c21c83e3ab7e65e5a1aa961bbd1df6850a2;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Validator.h b/src/ModelAPI/ModelAPI_Validator.h index cd73508d5..06068e011 100644 --- a/src/ModelAPI/ModelAPI_Validator.h +++ b/src/ModelAPI/ModelAPI_Validator.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_Validator.hxx // Created: 2 Jul 2014 // Author: Mikhail PONIKAROV @@ -6,7 +8,7 @@ #define ModelAPI_Validator_H_ #include -#include +#include #include class ModelAPI_Feature; @@ -31,7 +33,7 @@ class MODELAPI_EXPORT ModelAPI_Validator } }; -typedef boost::shared_ptr ValidatorPtr; +typedef std::shared_ptr ValidatorPtr; /**\class ModelAPI_ValidatorsFactory * \ingroup DataModel @@ -77,12 +79,15 @@ class MODELAPI_EXPORT ModelAPI_ValidatorsFactory virtual const ModelAPI_Validator* validator(const std::string& theID) const = 0; /// Returns true if feature and all its attributes are valid. - virtual bool validate(const boost::shared_ptr& theFeature) const = 0; + virtual bool validate(const std::shared_ptr& theFeature) const = 0; /// register that this attribute in feature is not obligatory for the feature execution /// so, it is not needed for the standard validation mechanism virtual void registerNotObligatory(std::string theFeature, std::string theAttribute) = 0; + /// Returns true if the attribute in feature is not obligatory for the feature execution + virtual bool isNotObligatory(std::string theFeature, std::string theAttribute) = 0; + /// register that this attribute conceals in the object browser /// all referenced features after execution virtual void registerConcealment(std::string theFeature, std::string theAttribute) = 0;