Salome HOME
updated copyright message
[modules/shaper.git] / src / PartSet / PartSet_OverconstraintListener.h
index 551fb50eab5efa930b9f3f33348f41cc7ecefa25..c4078244d4c264e400481b4c14ee3384fcd10527 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -69,6 +69,11 @@ public:
     return myConflictingObjects;
   }
 
+  const std::set<ObjectPtr>& objectsToRemove() const
+  {
+    return myObjectsToRemove;
+  }
+
   bool isFullyConstrained() const { return myIsFullyConstrained; }
 
 protected:
@@ -101,6 +106,7 @@ private:
   ModuleBase_IWorkshop* myWorkshop;
   bool myIsActive; /// state if sketch is active
   std::set<ObjectPtr> myConflictingObjects;
+  std::set<ObjectPtr> myObjectsToRemove;
   bool myIsFullyConstrained; /// state if Solver is fully constrained, DOF = 0
 };