Data Representation Model API
if (SE_IdentifyObject( curr_object, &curr_tag) != SE_SUCCESS)
fprintf(stderr, "Fatal Error - Can't identify object!\n");
// If this is an Image object or a Data Table, we require special
if (curr_tag == SE_IMAGE_TOKEN)
ProcessImageData(curr_object, fields_ptr, my_object);
if(SE_IsA[curr_tag][SE_DATA_TABLE_TOKEN])
ProcessDataTable(curr_object,fields_ptr, my_object);