]> Creatis software - gdcm.git/blob - src/gdcmContentEntry.h
* src/gdcmDocEntrySet.cxx : Bug fix when getting the value
[gdcm.git] / src / gdcmContentEntry.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmContentEntry.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/25 16:32:45 $
7   Version:   $Revision: 1.2 $
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 GDCMCONTENTENTRY_H
20 #define GDCMCONTENTENTRY_H
21
22 #include "gdcmDocEntry.h"
23
24 #include <iostream>
25
26 namespace gdcm 
27 {
28 //-----------------------------------------------------------------------------
29 /**
30  * \brief   Any Dicom Document (File or DicomDir) contains 
31  *           a set of DocEntry  - Dicom entries -
32  *           (when successfuly parsed against a given Dicom dictionary)
33  *          ContentEntry is an elementary DocEntry (as opposed to SeqEntry).
34  *          Depending on the type of its content,
35  *          ContentEntry is specialized as a ValEntry or a BinEntry
36  */
37 class GDCM_EXPORT ContentEntry  : public DocEntry
38 {
39 public:
40    virtual void WriteContent(std::ofstream *fp, FileType filetype) = 0;
41
42    // Accessors are protected, not to be invoked by end user
43    /// Sets the value (string) of the current Dicom entry
44    virtual void SetValue(std::string const &val) { Value = val; };
45  
46    /// \brief Returns the 'Value' (e.g. "Dupond Marcel") converted 
47    /// into a 'string', event if it's physically stored on disk as an integer
48    std::string const &GetValue() const { return Value; };
49
50 protected:
51    // Contructors are protected, not to be invoked by end user.
52    ContentEntry(DictEntry *e);
53    ContentEntry(DocEntry *d); 
54    // Destructor is protected, not to be invoked by end user.
55    ~ContentEntry();
56
57 private:
58 // Members :
59    /// \brief Dicom entry value, internaly represented as a std::string.
60    ///        The Value Representation (\ref VR) is independently used
61    ///        in order to interpret (decode) this field.
62    std::string Value;
63 };
64
65 } // end namespace gdcm
66
67 //-----------------------------------------------------------------------------
68 #endif
69