From 8c9ff2cd5262d0c31fecc68845be5e4640d89a5e Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 10 Mar 2025 20:03:00 -0400 Subject: [PATCH] cwFlowTypes.h : Added ui_cfg to var_desc_t. --- cwFlowTypes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cwFlowTypes.h b/cwFlowTypes.h index 57f3abc..60f9ee6 100644 --- a/cwFlowTypes.h +++ b/cwFlowTypes.h @@ -40,6 +40,7 @@ namespace cw const object_t* cfg; // The cfg object that describes this variable from 'flow_class'. const object_t* val_cfg; // An object containing the default value for this variable. const object_t* fmt_cfg; // An object containg the format (e.g. record fields) information + const object_t* ui_cfg; // The UI cfg for this var. const char* label; // Name of this var. unsigned type; // Value type id (e.g. kBoolTFl, kIntTFl, ...) unsigned flags; // Attributes for this var. (e.g. kSrcVarFl )