X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FModel%2FModel_AttributeInteger.cpp;h=ef60113dda1edf8ba8376da3ae23170787d21430;hb=4de8d53fef7532b6843d79c970f55ad46f98da62;hp=3f61cbd966561b8f2598c913ad3cb54e10d35589;hpb=b5eaf6f6971771b1e39f55ba5fc484e2f150ffb8;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeInteger.cpp b/src/Model/Model_AttributeInteger.cpp index 3f61cbd96..ef60113dd 100644 --- a/src/Model/Model_AttributeInteger.cpp +++ b/src/Model/Model_AttributeInteger.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_AttributeInteger.cpp -// Created: 03 sep 2014 -// Author: sbh +// 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 +// #include @@ -42,7 +55,7 @@ int Model_AttributeInteger::value() return myExpression->value(); } -void Model_AttributeInteger::setText(const std::string& theValue) +void Model_AttributeInteger::setText(const std::wstring& theValue) { if (text() != theValue) { myExpression->setText(theValue); @@ -52,7 +65,7 @@ void Model_AttributeInteger::setText(const std::string& theValue) } } -std::string Model_AttributeInteger::text() +std::wstring Model_AttributeInteger::text() { return myExpression->text(); } @@ -78,12 +91,12 @@ std::string Model_AttributeInteger::expressionError() return myExpression->error(); } -void Model_AttributeInteger::setUsedParameters(const std::set& theUsedParameters) +void Model_AttributeInteger::setUsedParameters(const std::set& theUsedParameters) { myExpression->setUsedParameters(theUsedParameters); } -std::set Model_AttributeInteger::usedParameters() const +std::set Model_AttributeInteger::usedParameters() const { return myExpression->usedParameters(); }