From: asl Date: Fri, 20 Nov 2009 14:55:07 +0000 (+0000) Subject: new methods Save(), Load(), Params() X-Git-Tag: PHASE_17_Part1_V1~41 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=d923d529d6413d13dcd8ea8183bc4ac022d5fdaf;p=modules%2Fkernel.git new methods Save(), Load(), Params() --- 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 ); }; };