Skip to content
Snippets Groups Projects
Commit aa197f65 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

Merge branch 'master' of http://gitlab.onelab.info/gmsh/gmsh

parents 424b0373 d728c651
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,15 @@ Struct NS1::St3 [ Type 3 ];
val_Type_of_Struct_St2 = St2.Type;
val_Type_of_Struct_St2_in_NS1 = NS1::St2.Type;
// To access a 'Tag': via the Tag member or directly with the single structure name
// (with possible namespace)
tag_of_struct_St1 = St1.Tag;
tag_of_struct_NS1_St1 = NS1::St1.Tag;
direct_tag_of_struct_St1 = St1;
direct_tag_of_struct_NS1_St1 = NS1::St1;
// To access real list members:
one_element_from_a_list_member = struct_identifier.struct_member_list_of_real_1(1);
full_list_from_a_list_member() = struct_identifier.struct_member_list_of_real_1();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment