]> Creatis software - gdcm.git/blob - src/gdcm.h
* removal of class gdcmHeaderEntrySet
[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).  
14 // Refer to 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 "gdcmHeaderEntry.h"
24
25 #include "gdcmHeader.h"
26 #include "gdcmHeaderHelper.h"
27 #include "gdcmFile.h"
28
29 //-----------------------------------------------------------------------------
30 #endif // #ifndef GDCM_H