mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-12 14:14:33 +05:00

Fix approach to storage of NoteBook variables. Before the fix: names of variables are stored in PythonDump commands and nothing is stored in the Study. Problem: after variable removal, the PythonDump script becomes invalid. Fix: names of variables are stored in the Study, PythonDump commands store indices of variables within "StringAttribute". class SMESH_Gen_i { ... - void UpdateParameters(/*CORBA::Object_ptr theObject,*/ const char* theParameters); + void UpdateParameters(CORBA::Object_ptr theObject, const char* theParameters); + const std::vector< int >& GetLastParamIndices() const; + std::vector< std::string > GetAllParameters(const std::string& theObjectEntry) const;
The file is empty.
Description
Languages
C++
85.2%
Python
12.8%
CMake
1.1%
HTML
0.4%
C
0.3%
Other
0.1%