Salome HOME
updated copyright message
[modules/shaper.git] / src / GeomData / GeomData_Point2D.cpp
index ced572f4eb014f1cb9742b009fa7b4b47587e812..e5bf15230be3124b3fe6a3526d45b663825381f7 100644 (file)
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        GeomData_Point2D.cxx
-// Created:     24 Apr 2014
-// Author:      Mikhail PONIKAROV
+// 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
+//
 
 #include "GeomData_Point2D.h"
 
@@ -73,8 +86,8 @@ std::shared_ptr<GeomAPI_Pnt2d> GeomData_Point2D::pnt()
   return aResult;
 }
 
-void GeomData_Point2D::setText(const std::string& theX,
-                               const std::string& theY)
+void GeomData_Point2D::setText(const std::wstring& theX,
+                               const std::wstring& theY)
 {
   if (!myIsInitialized && theX.empty() && theY.empty())
     return; // empty strings are not good initializers
@@ -87,11 +100,11 @@ void GeomData_Point2D::setText(const std::string& theX,
   }
 }
 
-std::string GeomData_Point2D::textX()
+std::wstring GeomData_Point2D::textX()
 {
   return myExpression[0]->text();
 }
-std::string GeomData_Point2D::textY()
+std::wstring GeomData_Point2D::textY()
 {
   return myExpression[1]->text();
 }
@@ -123,13 +136,13 @@ std::string GeomData_Point2D::expressionError(int theComponent)
 }
 
 void GeomData_Point2D::setUsedParameters(int theComponent,
-                                         const std::set<std::string>& theUsedParameters)
+                                         const std::set<std::wstring>& theUsedParameters)
 {
   assert(theComponent >= 0 && theComponent < NUM_COMPONENTS);
   myExpression[theComponent]->setUsedParameters(theUsedParameters);
 }
 
-std::set<std::string> GeomData_Point2D::usedParameters(int theComponent) const
+std::set<std::wstring> GeomData_Point2D::usedParameters(int theComponent) const
 {
   assert(theComponent >= 0 && theComponent < NUM_COMPONENTS);
   return myExpression[theComponent]->usedParameters();