]> Creatis software - gdcm.git/blob - src/gdcmContentEntry.h
* Remove friend classes between DocEntry and File
[gdcm.git] / src / gdcmContentEntry.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmContentEntry.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/28 15:10:56 $
7   Version:   $Revision: 1.3 $
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    void Copy(DocEntry *doc);
51
52 protected:
53    // Contructors are protected, not to be invoked by end user.
54    ContentEntry(DictEntry *e);
55    ContentEntry(DocEntry *d); 
56    // Destructor is protected, not to be invoked by end user.
57    ~ContentEntry();
58
59 private:
60 // Members :
61    /// \brief Dicom entry value, internaly represented as a std::string.
62    ///        The Value Representation (\ref VR) is independently used
63    ///        in order to interpret (decode) this field.
64    std::string Value;
65 };
66
67 } // end namespace gdcm
68
69 //-----------------------------------------------------------------------------
70 #endif
71