mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
15 lines
205 B
Plaintext
15 lines
205 B
Plaintext
|
netcdf test_vlen7 {
|
||
|
types:
|
||
|
compound v1_base_t {
|
||
|
int v1 ;
|
||
|
}; // v1_base_t
|
||
|
v1_base_t(*) v1_t ;
|
||
|
dimensions:
|
||
|
d = 1 ;
|
||
|
variables:
|
||
|
v1_t v1(d) ;
|
||
|
|
||
|
// global attributes:
|
||
|
:_DAP4_Little_Endian = 1UB ;
|
||
|
}
|