EDCS Reference Manual
Types
EDCS_Long_Float_Value
/*
 * STRUCT: EDCS_Long_Float_Value
 *
 *   This data type is the structured EDCS representation type that
 *   represents either a single value or an interval of values of
 *   EDCS attribute value type REAL.
 */
typedef struct
{

EDCS_Numeric_Value_Type numeric_value_type;
EDCS_Unit_Code unit;
EDCS_Unit_Scale_Code unit_scale;
union
{
EDCS_Long_Float single_value;
EDCS_Long_Float_Interval open_interval;
EDCS_Long_Float_Interval ge_lt_interval;
EDCS_Long_Float_Interval gt_le_interval;
EDCS_Long_Float_Interval closed_interval;
EDCS_Long_Float gt_semi_interval;
EDCS_Long_Float ge_semi_interval;
EDCS_Long_Float lt_semi_interval;
EDCS_Long_Float le_semi_interval;
} value;
} EDCS_Long_Float_Value;



Prev: EDCS_Long_Float_Interval. Next: EDCS_Null.


Return to: Top of this Page, Type Index