]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/FeaturesAPI/FeaturesAPI_Recover.cpp
Salome HOME
Reading of the construction naming name support (in the frames of Dump Python issue...
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Recover.cpp
index 4fdf104f7561adc1664f8b51eedf5025c65d4922..30b22e13172d08cac58228ca2660cd55e313f1a1 100644 (file)
@@ -9,12 +9,14 @@
 #include <ModelHighAPI_Reference.h>
 #include <ModelHighAPI_Tools.h>
 
+//=================================================================================================
 FeaturesAPI_Recover::FeaturesAPI_Recover(const std::shared_ptr<ModelAPI_Feature>& theFeature)
 : ModelHighAPI_Interface(theFeature)
 {
   initialize();
 }
 
+//=================================================================================================
 FeaturesAPI_Recover::FeaturesAPI_Recover(const std::shared_ptr<ModelAPI_Feature>& theFeature,
   const ModelHighAPI_Reference& theBaseFeature,
   const std::list<ModelHighAPI_Selection>& theRecoveredList, const bool thePersistent)
@@ -27,27 +29,32 @@ FeaturesAPI_Recover::FeaturesAPI_Recover(const std::shared_ptr<ModelAPI_Feature>
   }
 }
 
+//=================================================================================================
 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
 }
 
+//=================================================================================================
 void FeaturesAPI_Recover::setRecoveredList(const std::list<ModelHighAPI_Selection>& theRecoverList)
 {
   fillAttribute(theRecoverList, myrecoveredList);
   // do not need to execute because on attribute changed it does everything anyway
 }
 
+//=================================================================================================
 void FeaturesAPI_Recover::setIsPersistent(bool thePersistent)
 {
   fillAttribute(thePersistent, myisPersistent);
   // do not need to execute because on attribute changed it does everything anyway
 }
 
+//=================================================================================================
 RecoverPtr addRecover(const std::shared_ptr<ModelAPI_Document>& thePart,
   const ModelHighAPI_Reference& theBaseFeature,
   const std::list<ModelHighAPI_Selection>& theRecoveredList, const bool thePersistent)