]> Creatis software - gdcm.git/blob - src/gdcmDocEntrySet.h
ENH: Ok second chunk of patch, tests seems to go smoothly
[gdcm.git] / src / gdcmDocEntrySet.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocEntrySet.h,v $
5   Language:  C++
6   Date:      $Date: 2004/06/21 04:43:02 $
7   Version:   $Revision: 1.11 $
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.htm 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 GDCMDOCENTRYSET_H
20 #define GDCMDOCENTRYSET_H
21
22 #include "gdcmException.h"
23 #include "gdcmDocEntry.h"
24  
25 //-----------------------------------------------------------------------------
26
27 class GDCM_EXPORT gdcmDocEntrySet
28 {
29
30 public:
31
32    gdcmDocEntrySet(int depth = 0); 
33    virtual ~gdcmDocEntrySet();
34
35    /// \brief adds any type of entry to the entry set (pure vitual)
36    virtual bool AddEntry(gdcmDocEntry *Entry) = 0; // pure virtual
37          
38    /// \brief prints any type of entry to the entry set (pure vitual)
39    virtual void Print (std::ostream & os = std::cout) = 0;// pure virtual
40
41    /// \brief Gets the depth level of a Dicom Header Entry embedded in a
42    ///        SeQuence
43    inline int GetDepthLevel(void) { return SQDepthLevel; }
44
45    /// \brief Sets the depth level of a Dicom Header Entry embedded in a
46    /// SeQuence
47    inline void SetDepthLevel(int depth) { SQDepthLevel = depth; }
48          
49 protected:
50    /// \brief   Build a new Element Value from all the low level arguments. 
51    ///         Check for existence of dictionary entry, and build
52    ///          a default one when absent (pure virtual)
53    virtual gdcmDocEntry *NewDocEntryByNumber(guint16 group, 
54                                              guint16 element)=0; // pure virtual
55
56    /// \brief   Build a new Element Value from all the low level arguments. 
57    ///         Check for existence of dictionary entry, and build
58    ///          a default one when absent (pure virtual)
59    virtual gdcmDocEntry *NewDocEntryByName  (std::string Name)=0;// pure virtual  
60    /// Gives the depth level of the element set inside SeQuences   
61    int SQDepthLevel;
62
63 private:
64     
65 };
66
67
68 //-----------------------------------------------------------------------------
69 #endif
70