X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.h;h=e2f67b617dde97fb7a9024be9d37217d8a2fd95b;hb=7ba8e2b57ff8965ae644b538c167b7b301e6e41b;hp=5fa3a8a9004441d4e0000a4f9eff83f25de94df5;hpb=758a57d77b6fa3a0485fa3378a1280c7e87a74aa;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.h b/src/Model/Model_Validator.h index 5fa3a8a90..e2f67b617 100644 --- a/src/Model/Model_Validator.h +++ b/src/Model/Model_Validator.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Validator.hxx // Created: 2 Jul 2014 // Author: Mikhail PONIKAROV @@ -70,12 +72,15 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory MODEL_EXPORT virtual const ModelAPI_Validator* validator(const std::string& theID) const; /// Returns true if feature and all its attributes are valid. - MODEL_EXPORT virtual bool validate(const boost::shared_ptr& theFeature) const; + MODEL_EXPORT virtual bool validate(const std::shared_ptr& theFeature) const; /// 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); + /// Returns true if the attribute in feature is not obligatory for the feature execution + virtual bool isNotObligatory(std::string theFeature, std::string theAttribute); + /// register that this attribute conceals in the object browser /// all referenced features after execution virtual void registerConcealment(std::string theFeature, std::string theAttribute); @@ -84,7 +89,8 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory virtual bool isConcealed(std::string theFeature, std::string theAttribute); protected: - void addDefaultValidators(std::list& theValidators) const; + void addDefaultValidators(std::list& theValidators, + std::list >& theArguments) const; /// Get instance from Session Model_ValidatorsFactory();