Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchAPI / SketchAPI_Line.h
index 23f9042400ca9378001c450ac8b85d4cead7a331..f9c0bb31f6d7953e8207f11f4282e6dd1419f185 100644 (file)
@@ -1,8 +1,21 @@
-// Name   : SketchAPI_Line.h
-// Purpose: 
+// Copyright (C) 2014-2023  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:
-// 07/06/16 - Sergey POKHODENKO - Creation of the file
 
 #ifndef SRC_SKETCHAPI_SKETCHAPI_LINE_H_
 #define SRC_SKETCHAPI_SKETCHAPI_LINE_H_
@@ -44,15 +57,18 @@ public:
   /// Constructor with values
   SKETCHAPI_EXPORT
   SketchAPI_Line(const std::shared_ptr<ModelAPI_Feature> & theFeature,
-                 const std::string & theExternalName);
+                 const std::wstring & theExternalName);
   /// Destructor
   SKETCHAPI_EXPORT
   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
@@ -70,7 +86,7 @@ public:
 
   /// Set by external name
   SKETCHAPI_EXPORT
-  void setByExternalName(const std::string & theExternalName);
+  void setByExternalName(const std::wstring & theExternalName);
 
   /// Set start point
   SKETCHAPI_EXPORT