Salome HOME
SketchSolver Refactoring: Eliminate SolveSpace as a sketch solver.
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintMiddle.h
index bc0053b207d9b476aedab7b36f7bbe368f0eb984..4d08057043291b181c84c5eff49c83dc212e475a 100644 (file)
@@ -7,23 +7,33 @@
 #ifndef SketchSolver_ConstraintMiddle_H_
 #define SketchSolver_ConstraintMiddle_H_
 
-#include <SketchSolver_Constraint.h>
+#include <SketchSolver_ConstraintCoincidence.h>
 
 /** \class   SketchSolver_ConstraintMiddle
  *  \ingroup Plugins
  *  \brief   Converts middle-point constraint to the constraint applicable for solver
  */
-class SketchSolver_ConstraintMiddle : public SketchSolver_Constraint
+class SketchSolver_ConstraintMiddle : public SketchSolver_ConstraintCoincidence
 {
 public:
   /// Constructor based on SketchPlugin constraint
-  SKETCHSOLVER_EXPORT SketchSolver_ConstraintMiddle(ConstraintPtr theConstraint);
+  SketchSolver_ConstraintMiddle(ConstraintPtr theConstraint)
+    : SketchSolver_ConstraintCoincidence(theConstraint)
+  {}
 
-  virtual ~SketchSolver_ConstraintMiddle() {}
+  /// \brief Notify this object about the feature is changed somewhere
+  virtual void notify(const FeaturePtr&      theFeature,
+                      PlaneGCSSolver_Update* theUpdater) override;
 
-  /// \brief Notify constraint, that coincidence appears or removed
-  virtual void notifyCoincidenceChanged(EntityWrapperPtr theCoincAttr1,
-                                        EntityWrapperPtr theCoincAttr2);
+protected:
+  /// \brief Generate list of attributes of constraint in order useful for constraints
+  /// \param[out] theValue      numerical characteristic of constraint (e.g. distance)
+  /// \param[out] theAttributes list of attributes to be filled
+  virtual void getAttributes(EntityWrapperPtr&              theValue,
+                             std::vector<EntityWrapperPtr>& theAttributes) override;
+
+private:
+  ConstraintWrapperPtr myMiddle;
 };
 
 #endif