Salome HOME
Remove extra files
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintTangent.h
index 2ffa8de02977b700bbe887cec63c8957047b7463..589d1ab4537a365a01b66a17f3e4559a7571c38d 100644 (file)
@@ -19,7 +19,8 @@ class SketchSolver_ConstraintTangent : public SketchSolver_Constraint
 public:
   /// Constructor based on SketchPlugin constraint
   SketchSolver_ConstraintTangent(ConstraintPtr theConstraint) :
-      SketchSolver_Constraint(theConstraint)
+      SketchSolver_Constraint(theConstraint),
+      isArcArcInternal(false)
   {}
 
 protected:
@@ -31,6 +32,9 @@ protected:
   /// \brief This method is used in derived objects to check consistency of constraint.
   ///        E.g. the distance between line and point may be signed.
   virtual void adjustConstraint();
+
+private:
+  bool isArcArcInternal;
 };
 
 #endif