Salome HOME
Updated copyright comment
[modules/shaper.git] / src / SketchAPI / SketchAPI_Constraint.h
index 958bbdae31c810b98bd36a9e4bfdc95ac3d11669..423af800a689d7b8d118720f9c4ba5e90d479787 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #ifndef SRC_SKETCHAPI_SKETCHAPI_CONSTRAINT_H_
@@ -30,6 +29,7 @@
 #include <SketchPlugin_Constraint.h>
 
 class ModelHighAPI_Double;
+class SketchAPI_SketchEntity;
 
 /**\class SketchAPI_Constraint
  * \ingroup CPPHighAPI
@@ -63,9 +63,16 @@ public:
 
   SKETCHAPI_EXPORT void setValue(const ModelHighAPI_Double& theValue);
 
+  SKETCHAPI_EXPORT double value() const;
+
   /// Dump wrapped feature
   SKETCHAPI_EXPORT
   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
+
+protected:
+  // Check all attributes of constraint are already dumped.
+  // If not, store the constraint as postponed.
+  bool areAllAttributesDumped(ModelHighAPI_Dumper& theDumper) const;
 };
 
 #endif