DICOMIOD
typedef struct _DICOMIOD
{
GENERICLINK; /* reserved */
L_UINT32 nCode; /* code */
L_TCHAR *pszName; /* name */
L_UCHAR nType; /* type */
L_UINT16 nUsage; /* usage */
L_TCHAR *pszDescription; /* description */
} DICOMIOD, * pDICOMIOD;
The DICOMIOD structure contains information about Information Object Definitions.
Member |
Description | |
GENERICLINK |
Reserved. | |
nCode |
Code value that specifies the Information Object Definition. The information object may be a Class, a Module or a Tag. For lists of default values, refer to Data Element Tag Constants, IOD Class Constants, and IOD Module Constants. | |
pszName |
Character string that contains the name of the Information Object Definition. | |
nType |
The type of Information Object Definition you are working with. Possible values are: | |
|
Value |
Meaning |
|
IOD_TYPE_CLASS |
[0x00] Class type Information Object Definition. |
|
IOD_TYPE_MODULE |
[0x01] Module type Information Object Definition. |
|
IOD_TYPE_ELEMENT |
[0x02] Element type Information Object Definition. |
nUsage |
Value that indicates whether the Information Object is mandatory, conditional or optional, and the type of usage. For a list of possible values, refer to IOD Usage Constants. For more information about mandatory, conditional, and optional IODs, refer to An Overview of Dicom or the DICOM Spec. | |
pszDescription |
Character string that contains a description of the Information Object Definition. |
Comments
Internally LEADTOOLS maintains a tree structure, referred to as the IOD Structure, of available Information Object Definitions (IODs). TheseIODs can include default IODs available in DICOM, as well as user defined IODs. You can access any of this information, add to the IOD Structure, or delete items from the IOD Structure using the LDicomIOD class.
See Also