#include <gdcmGlobal.h>
Public Member Functions | |
| Global () | |
| constructor : populates the various H Tables | |
| ~Global () | |
| canonical destructor | |
Static Public Member Functions | |
| DictSet * | GetDicts () |
| returns a pointer to Dictionaries Table | |
| VR * | GetVR () |
| returns a pointer to the 'Value Representation Table' | |
| TS * | GetTS () |
| returns a pointer to the 'Transfer Syntax Table' | |
| DicomDirElement * | GetDicomDirElements () |
| returns a pointer to the DicomDir related elements Table | |
Static Private Attributes | |
| DictSet * | Dicts = (DictSet *)0 |
| Pointer to a container, holding _all_ the Dicom Dictionaries. | |
| VR * | ValRes = (VR *)0 |
| Pointer to a hash table containing the 'Value Representations'. | |
| TS * | TranSyn = (TS *)0 |
| Pointer to a hash table containing the Transfer Syntax codes and their english description. | |
| DicomDirElement * | ddElem = (DicomDirElement *)0 |
| Pointer to the hash table containing the Dicom Elements necessary to describe each part of a DICOMDIR. | |
Definition at line 35 of file gdcmGlobal.h.
|
|
constructor : populates the various H Tables
Definition at line 59 of file gdcmGlobal.cxx. References ddElem, gdcmWarningMacro, TranSyn, and ValRes.
|
|
|
canonical destructor
Definition at line 75 of file gdcmGlobal.cxx. References ddElem, TranSyn, and ValRes.
|
|
|
returns a pointer to the DicomDir related elements Table
Definition at line 112 of file gdcmGlobal.cxx. References ddElem.
00113 {
00114 return ddElem;
00115 }
|
|
|
returns a pointer to Dictionaries Table
Definition at line 88 of file gdcmGlobal.cxx.
00089 {
00090 return Dicts;
00091 }
|
|
|
returns a pointer to the 'Transfer Syntax Table'
Definition at line 104 of file gdcmGlobal.cxx. References TranSyn.
00105 {
00106 return TranSyn;
00107 }
|
|
|
returns a pointer to the 'Value Representation Table'
Definition at line 96 of file gdcmGlobal.cxx. References ValRes.
00097 {
00098 return ValRes;
00099 }
|
|
|
Pointer to the hash table containing the Dicom Elements necessary to describe each part of a DICOMDIR.
Definition at line 46 of file gdcmGlobal.cxx. Referenced by GetDicomDirElements(), Global(), and ~Global(). |
|
|
Pointer to a container, holding _all_ the Dicom Dictionaries.
Definition at line 43 of file gdcmGlobal.cxx. |
|
|
Pointer to a hash table containing the Transfer Syntax codes and their english description.
Definition at line 45 of file gdcmGlobal.cxx. |
|
|
Pointer to a hash table containing the 'Value Representations'.
Definition at line 44 of file gdcmGlobal.cxx. |
1.3.6