From d923d529d6413d13dcd8ea8183bc4ac022d5fdaf Mon Sep 17 00:00:00 2001 From: asl Date: Fri, 20 Nov 2009 14:55:07 +0000 Subject: [PATCH] new methods Save(), Load(), Params() --- idl/SALOME_Notebook.idl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/idl/SALOME_Notebook.idl b/idl/SALOME_Notebook.idl index 135c0c5c8..3455f15f8 100644 --- a/idl/SALOME_Notebook.idl +++ b/idl/SALOME_Notebook.idl @@ -87,6 +87,8 @@ module SALOME }; + typedef sequence StringList; + //! This interface describes parameters container: Notebook interface Notebook : GenericObj { @@ -125,6 +127,18 @@ module SALOME //! access to parameter from notebook Parameter Param( in string name ); + + //! return list of all variables names + StringList Params(); + + + //persistence management + + //! save notebook into text file + void Save( in string name ); + + //! load notebook from text file + boolean Load( in string name ); }; }; -- 2.39.2