Salome HOME
Merge commit 'b1892f175d345f15c4b13b8e62c7d326bb9b4aab'
[modules/shaper.git] / src / SketchAPI / SketchAPI_Point.h
index 1596b0f9b5c8dc6d676856e79f0c080628b623c5..57f123f574237bf7d6c179fa41071f75ffb6d37f 100644 (file)
@@ -1,8 +1,21 @@
-// Name   : SketchAPI_Point.h
-// Purpose: 
+// 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
+// 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:
-// 15/06/16 - Sergey POKHODENKO - Creation of the file
 
 #ifndef SRC_SKETCHAPI_SKETCHAPI_POINT_H_
 #define SRC_SKETCHAPI_SKETCHAPI_POINT_H_
@@ -43,14 +56,16 @@ public:
   /// Constructor with values
   SKETCHAPI_EXPORT
   SketchAPI_Point(const std::shared_ptr<ModelAPI_Feature> & theFeature,
-                 const std::string & theExternalName);
+                 const std::wstring & theExternalName);
   /// Destructor
   SKETCHAPI_EXPORT
   virtual ~SketchAPI_Point();
 
   INTERFACE_2(SketchPlugin_Point::ID(),
-              coordinates, SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D, /** Point coordinates */,
-              external, SketchPlugin_Point::EXTERNAL_ID(), ModelAPI_AttributeSelection, /** External */
+              coordinates, SketchPlugin_Point::COORD_ID(),
+              GeomDataAPI_Point2D, /** Point coordinates */,
+              external, SketchPlugin_Point::EXTERNAL_ID(),
+              ModelAPI_AttributeSelection, /** External */
   )
 
   /// Set by coordinates
@@ -67,7 +82,11 @@ public:
 
   /// Set by external name
   SKETCHAPI_EXPORT
-  void setByExternalName(const std::string & theExternalName);
+  void setByExternalName(const std::wstring & theExternalName);
+
+  /// Dump wrapped feature
+  SKETCHAPI_EXPORT
+  virtual void dump(ModelHighAPI_Dumper& theDumper) const;
 };
 
 //! Pointer on Point object