]> Creatis software - gdcm.git/blob - src/gdcmValEntry.h
reintroduce testing
[gdcm.git] / src / gdcmValEntry.h
1 // gdcmValEntry.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMValEntry_H
4 #define GDCMValEntry_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 'non string' value
15  */
16 class GDCM_EXPORT gdcmDocEntry  : public gdcmValEntry {
17
18 public:
19
20 protected:
21
22 private:
23
24 // Variables
25   
26    /// \brief Header Entry value, stores as a std::string (VR will be used,
27    /// later, to decode)
28    std::string  value;
29
30
31
32
33
34
35
36
37
38 //-----------------------------------------------------------------------------
39 #endif
40