Salome HOME
updated copyright message
[modules/shaper.git] / src / Model / Model_AttributeDouble.cpp
index 3b123c3f3d0168105a0c1184b7ce5af7122fbb0c..d9e8ce69a50688d83d91ceb1b85b26666e28bced 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  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
 //
 // 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
 //
 
 #include "Model_AttributeDouble.h"
@@ -62,7 +61,7 @@ double Model_AttributeDouble::value()
   return myExpression->value();
 }
 
-void Model_AttributeDouble::setText(const std::string& theValue)
+void Model_AttributeDouble::setText(const std::wstring& theValue)
 {
   if (text() != theValue) {
     myExpression->setText(theValue);
@@ -72,7 +71,7 @@ void Model_AttributeDouble::setText(const std::string& theValue)
   }
 }
 
-std::string Model_AttributeDouble::text()
+std::wstring Model_AttributeDouble::text()
 {
   return myExpression->text();
 }
@@ -98,12 +97,12 @@ std::string Model_AttributeDouble::expressionError()
   return myExpression->error();
 }
 
-void Model_AttributeDouble::setUsedParameters(const std::set<std::string>& theUsedParameters)
+void Model_AttributeDouble::setUsedParameters(const std::set<std::wstring>& theUsedParameters)
 {
   myExpression->setUsedParameters(theUsedParameters);
 }
 
-std::set<std::string> Model_AttributeDouble::usedParameters() const
+std::set<std::wstring> Model_AttributeDouble::usedParameters() const
 {
   return myExpression->usedParameters();
 }