]> Creatis software - gdcm.git/blob - src/gdcmBinEntry.h
Taking into account the 'Dicom Sequences' leads up to introduce new concepts
[gdcm.git] / src / gdcmBinEntry.h
1 // gdcmBinEntry.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMBinEntry_H
4 #define GDCMBinEntry_H
5
6 #include <iostream>
7 #include <stdio.h>
8
9 //-----------------------------------------------------------------------------
10 /**
11  * \ingroup gdcmBinEntry
12  * \brief   The dicom header of a Dicom file contains a set of such entries
13  *          (when successfuly parsed against a given Dicom dictionary)
14  *          This one contains a 'string value'.
15  */
16 class GDCM_EXPORT gdcmBinEntry  : public gdcmValEntry {
17
18 public:
19
20 protected:
21
22 private:
23
24 // Variables
25
26    
27    /// \brief unsecure memory area to hold 'non string' values 
28    /// (ie : Lookup Tables, overlays, icons)   
29    void *voidArea;
30
31
32
33
34
35
36
37
38 };
39
40 //-----------------------------------------------------------------------------
41 #endif
42