mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
12 lines
239 B
Plaintext
12 lines
239 B
Plaintext
|
// Test cross group enum references
|
||
|
netcdf test_enum_2 {
|
||
|
types:
|
||
|
byte enum cloud_class_t {Clear = 0, Stratus = 1, Missing = 127 };
|
||
|
group: h {
|
||
|
variables:
|
||
|
/cloud_class_t primary_cloud;
|
||
|
data:
|
||
|
primary_cloud = Stratus;
|
||
|
}
|
||
|
}
|