]> Creatis software - gdcm.git/blob - src/gdcmValEntry.h
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[gdcm.git] / src / gdcmValEntry.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmValEntry.h,v $
5   Language:  C++
6   Date:      $Date: 2004/10/12 04:35:48 $
7   Version:   $Revision: 1.26 $
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 #include <iostream>
24 namespace gdcm 
25 {
26
27 //-----------------------------------------------------------------------------
28 /**
29  * \ingroup ValEntry
30  * \brief   The dicom header of a Dicom file contains a set of such entries
31  *          (when successfuly parsed against a given Dicom dictionary)
32  */
33 class GDCM_EXPORT ValEntry  : public DocEntry
34 {
35 public:
36    ValEntry(DictEntry* e);
37    ValEntry(DocEntry* d); 
38    virtual ~ValEntry();
39
40    /// \brief Returns the 'Value' (e.g. "Dupond Marcel") converted into a
41    /// 'string', if it's stored as an integer in the header of the
42    /// current Dicom Document Entry
43    std::string & GetValue() { return Value; };
44     
45    /// Sets the value (string) of the current Dicom Document Entry
46    void SetValue(std::string const & val) { Value = val; };
47
48    virtual void Print(std::ostream &os = std::cout); 
49    virtual void Write(FILE *fp, FileType filetype);
50
51 protected:
52    
53 private:
54 // Members :
55   
56    /// \brief Document Entry value, internaly represented as a std::string
57    ///        The Value Representation (\ref VR) is independently used
58    ///        in order to interpret (decode) this field.
59    std::string  Value;
60 };
61 } // end namespace gdcm
62
63 //-----------------------------------------------------------------------------
64 #endif
65