diff --git a/Doc/Manual/Scilab.html b/Doc/Manual/Scilab.html index e46e5a461..165f44667 100644 --- a/Doc/Manual/Scilab.html +++ b/Doc/Manual/Scilab.html @@ -600,8 +600,12 @@ we only need a real value instead.
-A C structure is wrapped through a pointer and getter and setter functions for access to the member variables. -For example of a struct with two members: +A C structure is wrapped through low-level accessor functions, i.e. functions that give access to the member variables of this structure. +In Scilab, a structure is manipulated through a pointer which is passed as argument of the accessor functions. +
+ ++Let's see it on an example of a struct with two members:
@@ -620,7 +624,7 @@ typedef struct {
Several functions are generated:
-The classes are wrapped the way as structs, through functions. For example, the following class: +The classes are wrapped the same way as structs. +Low-level accessor functions are generated for class members. +Also, constructor and destructor functions are generated to create and destroy an instance of the class.
-++For example, the following class: +
+ +%module example %inline %{