00001 /*========================================================================= 00002 00003 Program: 3DMed 00004 Date: $Date: 2014-02-25 18:30:00 +0800 $ 00005 Version: $Version: 4.6.0 $ 00006 Copyright: MIPG, Institute of Automation, Chinese Academy of Sciences 00007 00008 =========================================================================*/ 00009 00010 00011 #ifndef __mitkDICOMStructure_h 00012 #define __mitkDICOMStructure_h 00013 00014 typedef struct _dicom_element 00015 { 00016 union 00017 { 00018 unsigned long tag; 00019 struct 00020 { 00021 unsigned short elementNum; 00022 unsigned short groupNum; 00023 }; 00024 }; 00025 unsigned long length; 00026 void *value; 00027 unsigned short VR; 00028 bool isSequence; 00029 00030 } DICOMELEMENT; 00031 00032 00033 #endif 00034