Salome HOME
updated copyright message
[modules/shaper.git] / src / InitializationPlugin / InitializationPlugin_PyInterp.h
index b34a8df82ba0b213c71c2b2f81f49722eb3579ee..a2934ae72bf5fb28b31a4d899b6852fefd679f12 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2020  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -39,16 +39,16 @@ class INITIALIZATIONPLUGIN_EXPORT InitializationPlugin_PyInterp : public PyInter
   virtual ~InitializationPlugin_PyInterp();
 
   /// Returns a list of positions for theName in theExpression.
-  std::list<std::pair<int, int> > positions(const std::string& theExpression,
-                                            const std::string& theName);
+  std::list<std::pair<int, int> > positions(const std::wstring& theExpression,
+                                            const std::wstring& theName);
   /// Compiles theExpression and returns a list of parameters used in theExpression.
-  std::list<std::string> compile(const std::string& theExpression);
+  std::list<std::wstring> compile(const std::wstring& theExpression);
   /// Extends local context with the list of parameters.
-  void extendLocalContext(const std::list<std::string>& theParameters);
+  void extendLocalContext(const std::list<std::wstring>& theParameters);
   /// Clears local context.
   void clearLocalContext();
   /// Evaluates theExpression and returns its value.
-  double evaluate(const std::string& theExpression, std::string& theError);
+  double evaluate(const std::wstring& theExpression, std::string& theError);
 
   /// Runs the string command in the python interpreter. Returns true if no error is in result.
   bool runString(std::string theString);