|
The SEDRIS Data Representation Model
APPENDIX C - Types SE_Interval_Value |
|---|
/* * STRUCT: SE_Interval_Value * * A tagged union struct to store * interval types for <Interval Axis> instances. */
| typedef | struct | |
| { | ||
| SE_Interval_Value_Type | value_type; | |
| union | ||
| { | ||
| SE_Float_Interval_Value | real_value; | |
| SE_Integer_Interval_Value | integer_value; | |
| SE_Count_Interval_Value | count_value; | |
| } u; |
|