EDCS Reference Manual
Concept Mapping from EDCS 4.4 to FACC 2.1
Types
FACC_Feature_Mapping_Structure
/*
 * STRUCT: FACC_Feature_Mapping_Structure
 *
 * This structure will be returned from the call
 * EDCS_to_FACC_MapClassificationCode. 
 *
 * If the mapping_type field is FACC_MAP_TYP_ONE_TO_ONE 
 * then the additional concepts fields will be empty and 
 * the facc_feature_code field will have the FACC feature 
 * code.
 *
 * If the mapping_type field is FACC_MAP_TYP_ONE_TO_ONE_QUALIFIED
 * then the additional concepts fields will be populated with
 * concepts that qualify the FACC feature code in facc_feature_code
 *
 * If the mapping_type field is FACC_MAP_TYP_ONE_TO_ZERO
 * then all fields, except the notes field, will be 0 or NULL.
 *
 * In this version of the library, the mapping_type should be no other 
 * case for mapping classification codes
 */

typedef struct
{
FACC_Mapping_Type_Code mapping_type;
FACC_2p1_Feature_Code facc_feature_code;

EDCS_Integer additional_concept_count;
FACC_Attribute_With_Value additional_concepts;
const char * notes;
} FACC_Attribute_Mapping_Structure;



Return to: Top of this Page, Type Index