2 //-----------------------------------------------------------------------------
9 #include "gdcmDocEntry.h"
10 //-----------------------------------------------------------------------------
12 * \ingroup gdcmBinEntry
13 * \brief The dicom header of a Dicom file contains a set of such entries
14 * (when successfuly parsed against a given Dicom dictionary)
15 * This one contains a 'non string' value
17 class GDCM_EXPORT gdcmValEntry : public gdcmDocEntry {
21 gdcmValEntry(gdcmDictEntry* e);
24 /// \brief Returns the 'Value' (e.g. "Dupond Marcel") converted into a
25 /// 'string', if it's stored as an integer in the Dicom Header of the
26 /// current Dicom Header Entry
27 inline std::string GetValue(void) { return value; };
29 /// Sets the value (string) of the current Dicom Header Entry
30 inline void SetValue(std::string val) { value = val; };
38 /// \brief Header Entry value, stored as a std::string (VR will be used,
45 //-----------------------------------------------------------------------------