X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesAPI%2FFeaturesAPI_Recover.cpp;h=a7d35b63ce0bd069f34f9826daf4746af5fbc9e2;hb=f60dc9dd94d5d4b0ea07e3e3cbfd5b3028f0942d;hp=30b22e13172d08cac58228ca2660cd55e313f1a1;hpb=20a4d4c668c7f75553424222dab81569816e548f;p=modules%2Fshaper.git diff --git a/src/FeaturesAPI/FeaturesAPI_Recover.cpp b/src/FeaturesAPI/FeaturesAPI_Recover.cpp index 30b22e131..a7d35b63c 100644 --- a/src/FeaturesAPI/FeaturesAPI_Recover.cpp +++ b/src/FeaturesAPI/FeaturesAPI_Recover.cpp @@ -1,11 +1,26 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: FeaturesAPI_Recover.cpp -// Created: 07 June 2016 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #include "FeaturesAPI_Recover.h" +#include #include #include @@ -25,7 +40,6 @@ FeaturesAPI_Recover::FeaturesAPI_Recover(const std::shared_ptr if(initialize()) { setBaseFeature(theBaseFeature); setRecoveredList(theRecoveredList); - setIsPersistent(thePersistent); } } @@ -36,22 +50,33 @@ FeaturesAPI_Recover::~FeaturesAPI_Recover() //================================================================================================= void FeaturesAPI_Recover::setBaseFeature(const ModelHighAPI_Reference& theBaseFeature) { - fillAttribute(theBaseFeature, mybaseFeature); - // do not need to execute because on attribute changed it does everything anyway + + fillAttribute(theBaseFeature.feature(), mybaseFeature); + execute(); } //================================================================================================= void FeaturesAPI_Recover::setRecoveredList(const std::list& theRecoverList) { fillAttribute(theRecoverList, myrecoveredList); - // do not need to execute because on attribute changed it does everything anyway + execute(); } -//================================================================================================= -void FeaturesAPI_Recover::setIsPersistent(bool thePersistent) +//================================================================================================== +void FeaturesAPI_Recover::dump(ModelHighAPI_Dumper& theDumper) const { - fillAttribute(thePersistent, myisPersistent); - // do not need to execute because on attribute changed it does everything anyway + FeaturePtr aBase = feature(); + const std::string& aDocName = theDumper.name(aBase->document()); + + AttributeReferencePtr anAttrBaseFeature = + aBase->reference(FeaturesPlugin_Recover::BASE_FEATURE()); + AttributeRefListPtr anAttrRecoveredEntities = + aBase->reflist(FeaturesPlugin_Recover::RECOVERED_ENTITIES()); + + FeaturePtr aFeature = ModelAPI_Feature::feature(anAttrBaseFeature->value()); + + theDumper << aBase << " = model.addRecover(" << aDocName << ", " + << aFeature << ", " << anAttrRecoveredEntities << ")" << std::endl; } //=================================================================================================