]> Creatis software - gdcm.git/blob - src/gdcmSeqEntry.h
* src/gdcmSQItem[h|cxx] : rename some methods to have coherent names
[gdcm.git] / src / gdcmSeqEntry.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSeqEntry.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/20 11:26:18 $
7   Version:   $Revision: 1.30 $
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 GDCMSQDOCENTRY_H
20 #define GDCMSQDOCENTRY_H
21
22 #include "gdcmDocEntry.h"
23
24 #include <list>
25
26 namespace gdcm 
27 {
28 class SQItem;
29 //-----------------------------------------------------------------------------
30 typedef std::list<SQItem *> ListSQItem;
31 //-----------------------------------------------------------------------------
32 /**
33  * \brief a SeqEntry (as opposed to a ValEntry) is a non elementary DocEntry.
34  *        It is composed by a set of SQItems.
35  *        Each SQItem is composed by a set of DocEntry
36  *        A DocEntry may be a SeqEntry
37  *        ... and so forth 
38  */ 
39 class GDCM_EXPORT SeqEntry : public DocEntry 
40 {
41 public:
42    SeqEntry( DictEntry *e);
43    SeqEntry( DocEntry *d, int depth );
44    ~SeqEntry();
45    
46    void Print(std::ostream &os = std::cout, std::string const & indent = "" ); 
47    void WriteContent(std::ofstream *fp, FileType filetype);
48
49    /// returns the SQITEM chained List for this SeQuence.
50    //ListSQItem const &GetSQItems() const { return Items; }
51    SQItem *GetFirstSQItem();
52    SQItem *GetNextSQItem();
53    SQItem *GetSQItem(int itemNumber);
54    unsigned int GetNumberOfSQItems();
55       
56    /// Sets the delimitor mode
57    void SetDelimitorMode(bool dm) { DelimitorMode = dm; }
58
59    /// Sets the Sequence Delimitation Item
60    void SetDelimitationItem(DocEntry *e) { SeqTerm = e;}
61    DocEntry *GetDelimitationItem()       { return SeqTerm;}
62
63    void AddSQItem(SQItem *it, int itemNumber);
64
65    /// Gets the depth level
66    int GetDepthLevel() const { return SQDepthLevel; }
67
68    /// Sets the depth level of a Sequence Entry embedded in a SeQuence
69    void SetDepthLevel(int depth) { SQDepthLevel = depth; }
70
71 protected:
72
73 private:
74 // Variables
75
76    /// If this Sequence is in delimitor mode (length =0xffffffff) or not
77    bool DelimitorMode;
78    
79    /// Chained list of SQ Items
80    ListSQItem Items;
81    /// iterator on the SQItems of the current SeqEntry
82    ListSQItem::iterator ItSQItem;
83
84    /// sequence terminator item 
85    DocEntry *SeqTerm;
86
87    /// \brief Defines the depth level of this \ref SeqEntry inside
88    ///        the (optionaly) nested sequences. \ref SQDepthLevel
89    ///        and its \ref SQItem::SQDepthLevel counterpart
90    ///        are only defined on printing purposes (see \ref Print).
91    int SQDepthLevel;
92 };
93 } // end namespace gdcm
94 //-----------------------------------------------------------------------------
95 #endif
96