X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_AttributeBoolean.cpp;h=1f59947484bbecceb9a67170ff8190158536a083;hb=c57d2a7f1a57af01656e47e2e510990492404fce;hp=d576a8870be398222cdac5052fae5879695467c9;hpb=b5eaf6f6971771b1e39f55ba5fc484e2f150ffb8;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeBoolean.cpp b/src/Model/Model_AttributeBoolean.cpp index d576a8870..1f5994748 100644 --- a/src/Model/Model_AttributeBoolean.cpp +++ b/src/Model/Model_AttributeBoolean.cpp @@ -1,18 +1,29 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_AttributeBoolean.cpp -// Created: 2 june 2014 -// Author: Vitaly Smetannikov +// Copyright (C) 2014-2019 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 +// 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 "Model_AttributeBoolean.h" #include #include -using namespace std; - void Model_AttributeBoolean::setValue(bool theValue) { - Standard_Boolean aValue = theValue ? Standard_True : Standard_False; + Standard_Integer aValue = theValue ? 1 : 0; if (!myIsInitialized || myBool->Get() != aValue) { if (myBool.IsNull()) myBool = TDataStd_Integer::Set(myLab, 0); @@ -23,7 +34,7 @@ void Model_AttributeBoolean::setValue(bool theValue) bool Model_AttributeBoolean::value() { - return myIsInitialized && myBool->Get() == Standard_True ; + return myIsInitialized && myBool->Get() == 1; } Model_AttributeBoolean::Model_AttributeBoolean(TDF_Label& theLabel)