]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ParametersPlugin/ParametersPlugin_EvalListener.h
Salome HOME
updated copyright message
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_EvalListener.h
index d57e49c652468036e2ed36091ccc525e1a026e4f..77f649bbe80a0cea7e853040321a3e8e5101a824 100644 (file)
@@ -1,10 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
-/*
- * ParametersPlugin_EvalListener.h
- *
- *  Created on: Apr 28, 2015
- *      Author: sbh
- */
+// Copyright (C) 2014-2023  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_
@@ -27,7 +38,7 @@ 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<ParametersPlugin_Parameter*, std::string> myOldNames;
+  std::map<ParametersPlugin_Parameter*, std::wstring> myOldNames;
  public:
   PARAMETERSPLUGIN_EXPORT ParametersPlugin_EvalListener();
   PARAMETERSPLUGIN_EXPORT virtual ~ParametersPlugin_EvalListener();
@@ -43,21 +54,21 @@ class ParametersPlugin_EvalListener : public Events_Listener
   void processReplaceParameterEvent(const std::shared_ptr<Events_Message>& theMessage);
 
   /// Renames theOldName in theExpression by theNewName.
-  std::string renameInPythonExpression(const std::string& theExpression,
-                                       const std::string& theOldName,
-                                       const std::string& theNewName);
+  std::wstring renameInPythonExpression(const std::wstring& theExpression,
+                                        const std::wstring& theOldName,
+                                        const std::wstring& theNewName);
   /// Renames theOldName in the expression attribute of theParameter by theNewName.
   void renameInParameter(std::shared_ptr<ParametersPlugin_Parameter> theParameter,
-                         const std::string& theOldName,
-                         const std::string& theNewName);
+                         const std::wstring& theOldName,
+                         const std::wstring& theNewName);
   /// Renames theOldName in the text fields of theAttribute by theNewName.
   void renameInAttribute(std::shared_ptr<ModelAPI_Attribute> theAttribute,
-                         const std::string& theOldName,
-                         const std::string& theNewName);
+                         const std::wstring& theOldName,
+                         const std::wstring& theNewName);
   /// Renames theOldName in all dependents of theResultParameter by theNewName.
   void renameInDependents(std::shared_ptr<ModelAPI_ResultParameter> theResultParameter,
-                          const std::string& theOldName,
-                          const std::string& theNewName);
+                          const std::wstring& theOldName,
+                          const std::wstring& theNewName);
 };
 
 #endif /* SRC_PARAMETERSPLUGIN_PARAMETERSPLUGIN_EVALLISTENER_H_ */