/*************************************************************************** * E-Com Technology Ltd. * * ECOMPACS DICOM Network Transport Libraries * Version 0.1 Beta ***************************************************************************/ #ifndef _DICOM_DICTIONARY_ #define _DICOM_DICTIONARY_ class DICOM_API DicomDictionary { public: static UINT16 Lookup (UINT16 g, UINT16 e, char * TypeDesc, int DescLength); static UINT16 Lookup (UINT16 g, UINT16 e); // 给定描述,查找标志 static UINT32 Lookup (const char * key); // 给定标志,查找描述 static DString GetDescription (UINT16 g, UINT16 e); }; #endif