X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmGlobal.h;h=74997e6395fd1d179750e9d8beef6d59ce107980;hb=3a9e9df62b3198c4f93d1768074b6be828ac7308;hp=893af4151528d7b933ed38d25a6a0727b5159c4c;hpb=4e91acd4c7ffc1eb58f3762419398d8e1d214956;p=gdcm.git diff --git a/src/gdcmGlobal.h b/src/gdcmGlobal.h index 893af415..74997e63 100644 --- a/src/gdcmGlobal.h +++ b/src/gdcmGlobal.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmGlobal.h,v $ Language: C++ - Date: $Date: 2005/02/04 16:51:36 $ - Version: $Revision: 1.7 $ + Date: $Date: 2005/04/05 10:56:25 $ + Version: $Revision: 1.8 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -26,6 +26,7 @@ namespace gdcm class DictSet; class VR; class TS; +class DictGroupName; class DicomDirElement; //----------------------------------------------------------------------------- /** @@ -41,6 +42,7 @@ public: static DictSet *GetDicts(); static VR *GetVR(); static TS *GetTS(); + static DictGroupName *GetDictGroupName(); static DicomDirElement *GetDicomDirElements(); private: @@ -51,6 +53,9 @@ private: /// \brief Pointer to a hash table containing the Transfer Syntax codes /// and their english description static TS *TranSyn; + /// \brief Pointer to a hash table containing the Group codes + /// and their english name (from NIH) + static DictGroupName *GroupName; /// \brief Pointer to the hash table containing the Dicom Elements necessary /// to describe each part of a DICOMDIR static DicomDirElement *ddElem;