};
+ typedef sequence<string> StringList;
+
//! This interface describes parameters container: Notebook
interface Notebook : GenericObj
{
//! 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 );
};
};