]> Creatis software - gdcm.git/blob - src/gdcmValEntry.h
d40e4f0d76087cc13c9d3dd4904913def386d587
[gdcm.git] / src / gdcmValEntry.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmValEntry.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/11 15:15:38 $
7   Version:   $Revision: 1.35 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMVALENTRY_H
20 #define GDCMVALENTRY_H
21
22 #include "gdcmDocEntry.h"
23
24 #include <iostream>
25
26 namespace gdcm 
27 {
28 //-----------------------------------------------------------------------------
29 /**
30  * \brief   Any Dicom Document (File Header or DicomDir) contains 
31  *           a set of DocEntry entries 
32  *          (when successfuly parsed against a given Dicom dictionary)
33  *          ValEntry is an elementary DocEntry (as opposed to SeqEntry)
34  */
35 class GDCM_EXPORT ValEntry  : public DocEntry
36 {
37 public:
38    ValEntry(DictEntry *e);
39    ValEntry(DocEntry *d); 
40    ~ValEntry();
41
42    /// \brief Returns the 'Value' (e.g. "Dupond Marcel") converted into a
43    /// 'string', event if it's stored as an integer in the header of the
44    /// current Dicom Document Entry
45    std::string const &GetValue() const { return Value; };
46     
47    /// Sets the value (string) of the current Dicom Document Entry.
48    /// The size is updated
49    virtual void SetValue(std::string const &val);
50
51    virtual void Print(std::ostream &os = std::cout); 
52
53    virtual void WriteContent(std::ofstream *fp, FileType filetype);
54
55 protected:
56    /// Sets the value (string) of the current Dicom Document Entry
57    void SetValueOnly(std::string const &val) { Value = val; }; 
58    
59 private:
60 // Members :
61   
62    /// \brief Document Entry value, internaly represented as a std::string
63    ///        The Value Representation (\ref VR) is independently used
64    ///        in order to interpret (decode) this field.
65    std::string Value;
66 };
67 } // end namespace gdcm
68
69 //-----------------------------------------------------------------------------
70 #endif
71