DicomDictionary.hpp 624 B

12345678910111213141516171819202122232425
  1. /***************************************************************************
  2. * E-Com Technology Ltd.
  3. *
  4. * ECOMPACS DICOM Network Transport Libraries * Version 0.1 Beta
  5. ***************************************************************************/
  6. #ifndef _DICOM_DICTIONARY_
  7. #define _DICOM_DICTIONARY_
  8. class DICOM_API DicomDictionary
  9. {
  10. public:
  11. static UINT16 Lookup (UINT16 g, UINT16 e, char * TypeDesc, int DescLength);
  12. static UINT16 Lookup (UINT16 g, UINT16 e);
  13. // ¸ø¶¨ÃèÊö,²éÕÒ±êÖ¾
  14. static UINT32 Lookup (const char * key);
  15. // ¸ø¶¨±êÖ¾,²éÕÒÃèÊö
  16. static DString GetDescription (UINT16 g, UINT16 e);
  17. };
  18. #endif