]> Creatis software - gdcm.git/blob - src/gdcm.h
* src/gdcmIdo.h, gdcmHeaderIdo.cxx : remove the Ido unused files
[gdcm.git] / src / gdcm.h
1 // gdcm.h
2
3 #ifndef GDCM_H
4 #define GDCM_H
5
6 ////////////////////////////////////////////////////////////////////////////
7 // Tag based hash tables.
8 // We shall use as keys the strings (as the C++ type) obtained by
9 // concatenating the group value and the element value (both of type
10 // unsigned 16 bit integers in Dicom) expressed in hexadecimal.
11 // Example: consider the tag given as (group, element) = (0x0010, 0x0010).
12 // Then the corresponding TagKey shall be the string 0010|0010 (where
13 // the | (pipe symbol) acts as a separator). Refer to 
14 // gdcmDictEntry::TranslateToKey for this conversion function.
15
16 #include "gdcmException.h"
17 #include "gdcmCommon.h"
18
19 #include "gdcmDictEntry.h"
20 #include "gdcmDict.h"
21 #include "gdcmDictSet.h"
22
23 #include "gdcmElValue.h"
24 #include "gdcmElValSet.h"
25
26 #include "gdcmHeader.h"
27 #include "gdcmHeaderHelper.h"
28 #include "gdcmFile.h"
29
30 //#include "gdcmTS.h"
31 //#include "gdcmVR.h"
32 //#include "gdcmUtil.h"
33
34 #endif // #ifndef GDCM_H