Salome HOME
updated copyright message
[modules/shaper.git] / src / PartSet / PartSet_OverconstraintListener.h
index 49390f0ee7752b11f9eeee9389fb9512e664c3de..c4078244d4c264e400481b4c14ee3384fcd10527 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2020  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
@@ -64,6 +64,16 @@ public:
     return (myConflictingObjects.find(theObject) != myConflictingObjects.end());
   }
 
+  const std::set<ObjectPtr>& conflictingObjects() const
+  {
+    return myConflictingObjects;
+  }
+
+  const std::set<ObjectPtr>& objectsToRemove() const
+  {
+    return myObjectsToRemove;
+  }
+
   bool isFullyConstrained() const { return myIsFullyConstrained; }
 
 protected:
@@ -96,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
 };