00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef GDCMGLOBAL_H
00020 #define GDCMGLOBAL_H
00021
00022 #include "gdcmCommon.h"
00023
00024 namespace gdcm
00025 {
00026 class DictSet;
00027 class VR;
00028 class TS;
00029 class DictGroupName;
00030 class DicomDirElement;
00031
00036 class Dict;
00037 class GDCM_EXPORT Global
00038 {
00039 public:
00040 Global();
00041 ~Global();
00042
00044 static DictSet *GetDicts() { return Dicts;}
00046 static VR *GetVR(){ return ValRes; }
00048 static TS *GetTS(){ return TranSyn; }
00050 static DictGroupName *GetDictGroupName() { return GroupName; }
00052 static DicomDirElement *GetDicomDirElements(){ return ddElem; }
00053
00054 private:
00056 static DictSet *Dicts;
00058 static VR *ValRes;
00061 static TS *TranSyn;
00064 static DictGroupName *GroupName;
00067 static DicomDirElement *ddElem;
00068 };
00069 }
00070
00071
00072 #endif