X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParametersPlugin%2FParametersPlugin_EvalListener.h;h=57148ee8036b65a02ebf579dfa876246dcf851f3;hb=a13f87935d2a6f52f942790b6abc874f1016c9fc;hp=96181169a88382d1112348ab5c66fcc975bf59b0;hpb=7807756f46b9dcd90994ac57a8a514f0570e794e;p=modules%2Fshaper.git diff --git a/src/ParametersPlugin/ParametersPlugin_EvalListener.h b/src/ParametersPlugin/ParametersPlugin_EvalListener.h index 96181169a..57148ee80 100644 --- a/src/ParametersPlugin/ParametersPlugin_EvalListener.h +++ b/src/ParametersPlugin/ParametersPlugin_EvalListener.h @@ -1,9 +1,21 @@ -/* - * ParametersPlugin_EvalListener.h - * - * Created on: Apr 28, 2015 - * Author: sbh - */ +// 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 +// #ifndef SRC_PARAMETERSPLUGIN_EVALLISTENER_H_ #define SRC_PARAMETERSPLUGIN_EVALLISTENER_H_ @@ -13,9 +25,9 @@ class ModelAPI_Attribute; class ModelAPI_Document; +class ModelAPI_Feature; class ModelAPI_ResultParameter; class ParametersPlugin_Parameter; -class ParametersPlugin_PyInterp; /** * \class ParametersPlugin_EvalListener @@ -24,20 +36,18 @@ class ParametersPlugin_PyInterp; */ class ParametersPlugin_EvalListener : public Events_Listener { + /// map of old names, that were valid for perameres, but now parameter name is changed to invalid + /// stored not shared pointers to features to avoid memory keeping on the feature delete + std::map myOldNames; public: PARAMETERSPLUGIN_EXPORT ParametersPlugin_EvalListener(); PARAMETERSPLUGIN_EXPORT virtual ~ParametersPlugin_EvalListener(); /// Reimplemented from Events_Listener::processEvent(). - PARAMETERSPLUGIN_EXPORT virtual void processEvent(const std::shared_ptr& theMessage); + PARAMETERSPLUGIN_EXPORT + virtual void processEvent(const std::shared_ptr& theMessage); protected: - /// Evaluates theExpression and returns its value. - double evaluate(const std::string& theExpression, std::string& theError, - const std::shared_ptr& theDocument); - - /// Processes Evaluation event. - void processEvaluationEvent(const std::shared_ptr& theMessage); /// Processes ObjectRenamed event. void processObjectRenamedEvent(const std::shared_ptr& theMessage); /// Processes ReplaceParameter event. @@ -59,9 +69,6 @@ class ParametersPlugin_EvalListener : public Events_Listener void renameInDependents(std::shared_ptr theResultParameter, const std::string& theOldName, const std::string& theNewName); - - private: - std::shared_ptr myInterp; }; #endif /* SRC_PARAMETERSPLUGIN_PARAMETERSPLUGIN_EVALLISTENER_H_ */