1 /*=========================================================================
4 Module: $RCSfile: gdcmGlobal.h,v $
6 Date: $Date: 2005/04/05 10:56:25 $
7 Version: $Revision: 1.8 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
22 #include "gdcmCommon.h"
30 class DicomDirElement;
31 //-----------------------------------------------------------------------------
33 * \brief This class contains all globals elements that might be
34 * instanciated only once (singletons).
36 class GDCM_EXPORT Global
42 static DictSet *GetDicts();
45 static DictGroupName *GetDictGroupName();
46 static DicomDirElement *GetDicomDirElements();
49 /// Pointer to a container, holding _all_ the Dicom Dictionaries.
50 static DictSet *Dicts;
51 /// Pointer to a hash table containing the 'Value Representations'.
53 /// \brief Pointer to a hash table containing the Transfer Syntax codes
54 /// and their english description
56 /// \brief Pointer to a hash table containing the Group codes
57 /// and their english name (from NIH)
58 static DictGroupName *GroupName;
59 /// \brief Pointer to the hash table containing the Dicom Elements necessary
60 /// to describe each part of a DICOMDIR
61 static DicomDirElement *ddElem;
63 } // end namespace gdcm
65 //-----------------------------------------------------------------------------