diff options
-rw-r--r-- | doc/html/ddl.html | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/doc/html/ddl.html b/doc/html/ddl.html index 5c9644f..c16a60c 100644 --- a/doc/html/ddl.html +++ b/doc/html/ddl.html @@ -101,7 +101,7 @@ This section contains a brief explanation of the symbols used in the DDL. <boot_block_content> ::= TBD -<root_group> ::= GROUP "/" { <unamed_datatype>* <group_attribute>* <group_member>* } +<root_group> ::= GROUP "/" { <unamed_datatype>* <object_id><FONT SIZE=1.7>opt</FONT> <group_attribute>* <group_member>* } <unamed_datatype> ::= DATATYPE <unamed_type_name> { <compound_type> } @@ -158,8 +158,9 @@ This section contains a brief explanation of the symbols used in the DDL. <group_attribute> ::= <attribute> <attribute> ::= ATTRIBUTE <attr_name> { <datatype> - <dataspace> - <data><FONT SIZE=1.7>opt</FONT> } + <dataspace> + <object_id><FONT SIZE=1.7>opt</FONT> + <data><FONT SIZE=1.7>opt</FONT> } // <datatype> and <dataspace> must appear before <data>. <attr_name> ::= <identifier> @@ -219,13 +220,15 @@ This section contains a brief explanation of the symbols used in the DDL. <reference_data> ::= <object_ref_data> | <data_region_data> | NULL -<object_ref_data> ::= <object_type> <object_id> +<object_ref_data> ::= <object_type> <object_num> <object_type> ::= DATASET | GROUP | DATATYPE -<object_id> ::= an integer:an integer +<object_id> ::= OBJECTID { <object_num> } -<data_region_data> ::= H5T_STD_REF_DSETREG <object_id> {<data_region_data_info>, +<object_num> ::= an integer:an integer | an integer + +<data_region_data> ::= H5T_STD_REF_DSETREG <object_num> {<data_region_data_info>, <data_region_data_info>, ...} <data_region_data_info> ::= <region_info> | <point_info> @@ -264,7 +267,7 @@ This section contains a brief explanation of the symbols used in the DDL. <named_dataspace> ::= TBD <group> ::= GROUP <group_name> { <hardlink> } | - GROUP <group_name> { <group_attribute>* <group_member>* } + GROUP <object_id><FONT SIZE=1.7>opt</FONT> <group_name> { <group_attribute>* <group_member>* } <group_name> ::= <identifier> @@ -272,11 +275,12 @@ This section contains a brief explanation of the symbols used in the DDL. <dataset> ::= DATASET <dataset_name> { <hardlink> } | DATASET <dataset_name> { <datatype> - <dataspace> - <storagelayout><FONT SIZE=1.7>opt</FONT> - <compression><FONT SIZE=1.7>opt</FONT> - <dataset_attribute>* - <data><FONT SIZE=1.7>opt</FONT> } + <dataspace> + <storagelayout><FONT SIZE=1.7>opt</FONT> + <compression><FONT SIZE=1.7>opt</FONT> + <dataset_attribute>* + <object_id><FONT SIZE=1.7>opt</FONT> + <data><FONT SIZE=1.7>opt</FONT> } // Tokens within {} can be in any order as long as <data> and <dataset_attribute> // are after <datatype> and <dataspace>. |