X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParametersAPI%2FParametersAPI_Parameter.cpp;h=2af3eec68d1bd59e38dd6436496423c4f77fb9c5;hb=f421ab3932a5e09ae8082215c3eaaa8cc4944e02;hp=f4047896ec3e12d79bb6723d5f3ff45264344e5d;hpb=698a1c427ab2537e7a96b5206d6987087b78f54f;p=modules%2Fshaper.git diff --git a/src/ParametersAPI/ParametersAPI_Parameter.cpp b/src/ParametersAPI/ParametersAPI_Parameter.cpp index f4047896e..2af3eec68 100644 --- a/src/ParametersAPI/ParametersAPI_Parameter.cpp +++ b/src/ParametersAPI/ParametersAPI_Parameter.cpp @@ -1,16 +1,28 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> -// Name : ParametersAPI_Parameter.cpp -// Purpose: +// 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 // -// History: -// 16/06/16 - Sergey POKHODENKO - Creation of the file -//-------------------------------------------------------------------------------------- #include "ParametersAPI_Parameter.h" //-------------------------------------------------------------------------------------- #include #include #include +#include //-------------------------------------------------------------------------------------- ParametersAPI_Parameter::ParametersAPI_Parameter( const std::shared_ptr & theFeature) @@ -80,3 +92,14 @@ ParameterPtr addParameter(const std::shared_ptr & thePart, std::shared_ptr aFeature = thePart->addFeature(ParametersAPI_Parameter::ID()); return ParameterPtr(new ParametersAPI_Parameter(aFeature, theName, theExpression, theComment)); } + +//-------------------------------------------------------------------------------------- +void removeParameter(const std::shared_ptr & thePart, + const ParameterPtr & theParameter) +{ + FeaturePtr aParam = theParameter->feature(); + if (aParam) { + ModelAPI_ReplaceParameterMessage::send(aParam, 0); + thePart->removeFeature(aParam); + } +}