X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultField.cpp;h=56a18c43efaa8a8f4e2d11de96888f2e0632e089;hb=bca2adba037f3f3c8d80eadd07d0894b56e37a21;hp=da8f1773a0e1c6cf5fcd4edccfd868f98daa2b0f;hpb=c7c9598c735944d5ea695dc74c71eb7056d4ebac;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultField.cpp b/src/Model/Model_ResultField.cpp index da8f1773a..56a18c43e 100644 --- a/src/Model/Model_ResultField.cpp +++ b/src/Model/Model_ResultField.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_ResultField.cpp -// Created: 08 Jul 2014 -// Author: Mikhail PONIKAROV +// 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 #include @@ -24,11 +37,12 @@ Model_ResultField::Model_ResultField(std::shared_ptr theOwnerData Model_ResultField::~Model_ResultField() { while(mySteps.size() > 0) { - delete mySteps.back(); + //delete mySteps.back(); mySteps.pop_back(); } } +// LCOV_EXCL_START void Model_ResultField::colorConfigInfo(std::string& theSection, std::string& theName, std::string& theDefault) { @@ -36,6 +50,7 @@ void Model_ResultField::colorConfigInfo(std::string& theSection, std::string& th theName = "result_field_color"; theDefault = DEFAULT_COLOR(); } +// LCOV_EXCL_STOP std::shared_ptr Model_ResultField::shape() { @@ -91,11 +106,12 @@ void Model_ResultField::updateSteps() int aNbSteps = stepsSize(); if (mySteps.size() != aNbSteps) { while(mySteps.size() > aNbSteps) { - delete mySteps.back(); + //delete mySteps.back(); mySteps.pop_back(); } while(mySteps.size() < aNbSteps) { - mySteps.push_back(new Model_ResultField::Model_FieldStep(this, mySteps.size())); + mySteps.push_back(FieldStepPtr(new Model_ResultField::Model_FieldStep(this, + int(mySteps.size())))); } } } @@ -126,11 +142,20 @@ std::string Model_ResultField::textLine(int theLine) const return ""; } - -ModelAPI_ResultField::ModelAPI_FieldStep* Model_ResultField::step(int theId) const +// used by GUI only +// LCOV_EXCL_START +std::shared_ptr Model_ResultField::step(int theId) const { if (theId < mySteps.size()) { return mySteps[theId]; } return NULL; } + +std::string Model_ResultField::Model_FieldStep::name() { + std::ostringstream aStream; + aStream<data()->name()<textLine(myId); + return aStream.str(); +} +// LCOV_EXCL_STOP