X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmGlobal.h;h=4a68c6397a5656ba9a6e820222540bdcb558da9a;hb=ea76a94b72bfac08e9194487466b04d734e6bc23;hp=7043d6d60aa71a5aa091c9f52e21cbb41f0f75a6;hpb=1d69b92978803204089d270599133917d944c651;p=gdcm.git diff --git a/src/gdcmGlobal.h b/src/gdcmGlobal.h index 7043d6d6..4a68c639 100644 --- a/src/gdcmGlobal.h +++ b/src/gdcmGlobal.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmGlobal.h,v $ Language: C++ - Date: $Date: 2004/10/12 04:35:46 $ - Version: $Revision: 1.4 $ + Date: $Date: 2005/11/30 10:58:28 $ + Version: $Revision: 1.9 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,34 +19,51 @@ #ifndef GDCMGLOBAL_H #define GDCMGLOBAL_H -#include "gdcmVR.h" -#include "gdcmTS.h" -#include "gdcmDictSet.h" -#include "gdcmDicomDirElement.h" +#include "gdcmCommon.h" namespace gdcm { - +class DictSet; +class VR; +class TS; +class DictGroupName; +class DicomDirElement; //----------------------------------------------------------------------------- /** * \brief This class contains all globals elements that might be * instanciated only once (singletons). */ +class Dict; class GDCM_EXPORT Global { public: Global(); ~Global(); - static DictSet *GetDicts(); - static VR *GetVR(); - static TS *GetTS(); - static DicomDirElement *GetDicomDirElements(); + /// \brief returns a pointer to Dictionaries Table + static DictSet *GetDicts() { return Dicts;} + /// \brief returns a pointer to the 'Value Representation Table' + static VR *GetVR(){ return ValRes; } + /// \brief returns a pointer to the 'Transfer Syntax Table' + static TS *GetTS(){ return TranSyn; } + /// \brief returns a pointer to the Group name correspondance table + static DictGroupName *GetDictGroupName() { return GroupName; } + /// \brief returns a pointer to the DicomDir related elements Table + static DicomDirElement *GetDicomDirElements(){ return ddElem; } private: - static DictSet *Dicts; + /// Pointer to a container, holding _all_ the Dicom Dictionaries. + static DictSet *Dicts; + /// Pointer to a hash table containing the 'Value Representations'. static VR *ValRes; + /// \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; }; } // end namespace gdcm