2 //-----------------------------------------------------------------------------
9 #include "gdcmValEntry.h"
11 //-----------------------------------------------------------------------------
13 * \ingroup gdcmBinEntry
14 * \brief The dicom header of a Dicom file contains a set of such entries
15 * (when successfuly parsed against a given Dicom dictionary)
16 * This one contains a 'string value'.
18 class GDCM_EXPORT gdcmBinEntry : public gdcmValEntry {
26 /// \brief Returns the area value of the current Dicom Header Entry
27 /// when it's not string-translatable (e.g : a LUT table)
28 inline void * GetVoidArea(void) { return voidArea; };
30 /// \brief Sets the value (non string) of the current Dicom Header Entry
31 inline void SetVoidArea(void * area) { voidArea = area; };
39 /// \brief unsecure memory area to hold 'non string' values
40 /// (ie : Lookup Tables, overlays, icons)
45 //-----------------------------------------------------------------------------