X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_FeatureValidator.cpp;h=a809abe461a5d1653edcd6a4e8e5b3af2c817858;hb=2df56fe9d65461225eb0e622944862010dee54b0;hp=b34f03edd8f69c946d24c9e2c827f8e6db71309c;hpb=a7f44a41bdf29e7bd978ff3b8c8bd514d1223be7;p=modules%2Fshaper.git diff --git a/src/Model/Model_FeatureValidator.cpp b/src/Model/Model_FeatureValidator.cpp index b34f03edd..a809abe46 100644 --- a/src/Model/Model_FeatureValidator.cpp +++ b/src/Model/Model_FeatureValidator.cpp @@ -1,12 +1,16 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_FeatureValidator.cpp // Created: 8 Jul 2014 // Author: Vitaly SMETANNIKOV #include +#include #include #include #include #include +#include #include #include @@ -14,6 +18,9 @@ bool Model_FeatureValidator::isValid(const std::shared_ptr& theFeature, const std::list& theArguments) const { + static Model_ValidatorsFactory* aValidators = + static_cast(ModelAPI_Session::get()->validators()); + std::shared_ptr aData = theFeature->data(); // "Action" features has no data, but still valid. e.g "Remove Part" if (!aData) { @@ -26,6 +33,8 @@ bool Model_FeatureValidator::isValid(const std::shared_ptr& th std::list::iterator it = aLtAttributes.begin(); for (; it != aLtAttributes.end(); it++) { AttributePtr anAttr = aData->attribute(*it); + if (!aValidators->isCase(theFeature, anAttr->id())) + continue; // this attribute is not participated in the current case if (!anAttr->isInitialized()) { // attribute is not initialized std::map >::const_iterator aFeatureFind = myNotObligatory.find(theFeature->getKind());