Salome HOME
Update copyrights
[modules/shaper.git] / src / SketchAPI / SketchAPI_Line.h
index 5796c66beb19c285e9f1ab2ad6d24a7014088e77..c34db1b741759b198b3b0aedbd2424b43efe88e9 100644 (file)
@@ -1,8 +1,21 @@
-// Name   : SketchAPI_Line.h
-// Purpose: 
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// 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
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-// History:
-// 07/06/16 - Sergey POKHODENKO - Creation of the file
 
 #ifndef SRC_SKETCHAPI_SKETCHAPI_LINE_H_
 #define SRC_SKETCHAPI_SKETCHAPI_LINE_H_
@@ -14,8 +27,7 @@
 
 #include <SketchPlugin_Line.h>
 
-#include <ModelHighAPI_Interface.h>
-#include <ModelHighAPI_Macro.h>
+#include "SketchAPI_SketchEntity.h"
 //--------------------------------------------------------------------------------------
 class ModelHighAPI_Selection;
 //--------------------------------------------------------------------------------------
@@ -23,7 +35,7 @@ class ModelHighAPI_Selection;
  * \ingroup CPPHighAPI
  * \brief Interface for Line feature
  */
-class SketchAPI_Line : public ModelHighAPI_Interface
+class SketchAPI_Line : public SketchAPI_SketchEntity
 {
 public:
   /// Constructor without values
@@ -51,9 +63,12 @@ public:
   virtual ~SketchAPI_Line();
 
   INTERFACE_3(SketchPlugin_Line::ID(),
-              startPoint, SketchPlugin_Line::START_ID(), GeomDataAPI_Point2D, /** Start point */,
-              endPoint, SketchPlugin_Line::END_ID(), GeomDataAPI_Point2D, /** End point */,
-              external, SketchPlugin_Line::EXTERNAL_ID(), ModelAPI_AttributeSelection, /** External */
+              startPoint, SketchPlugin_Line::START_ID(),
+              GeomDataAPI_Point2D, /** Start point */,
+              endPoint, SketchPlugin_Line::END_ID(),
+              GeomDataAPI_Point2D, /** End point */,
+              external, SketchPlugin_Line::EXTERNAL_ID(),
+              ModelAPI_AttributeSelection, /** External */
   )
 
   /// Set by coordinates
@@ -88,6 +103,10 @@ public:
   /// Set end point
   SKETCHAPI_EXPORT
   void setEndPoint(const std::shared_ptr<GeomAPI_Pnt2d> & thePoint);
+
+  /// Dump wrapped feature
+  SKETCHAPI_EXPORT
+  virtual void dump(ModelHighAPI_Dumper& theDumper) const;
 };
 
 //! Pointer on Line object