]> Creatis software - gdcm.git/blob - src/gdcmSQItem.h
2004-06-22 Jean-Pierre Roux
[gdcm.git] / src / gdcmSQItem.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSQItem.h,v $
5   Language:  C++
6   Date:      $Date: 2004/06/22 13:47:33 $
7   Version:   $Revision: 1.10 $
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 #ifndef GDCMSQITEM_H
19 #define GDCMSQITEM_H
20
21 #include <list>
22 #include "gdcmDocEntry.h"
23 #include "gdcmDocEntrySet.h"
24 #include "gdcmDocument.h"
25
26
27 class gdcmBinEntry;
28
29 //-----------------------------------------------------------------------------
30 typedef std::list<gdcmDocEntry *> ListDocEntry;
31 //-----------------------------------------------------------------------------
32 class GDCM_EXPORT gdcmSQItem : public gdcmDocEntrySet
33 {
34 public:
35    gdcmSQItem(int);
36    ~gdcmSQItem(void);
37
38    virtual void Print(std::ostream &os = std::cout); 
39    virtual void Write(FILE *fp, FileType filetype);
40
41    /// \brief   returns the DocEntry chained List for this SQ Item.
42    inline ListDocEntry &GetDocEntries() {return docEntries;};   
43    
44    /// \brief   adds the passed DocEntry to the DocEntry chained List for
45    /// this SQ Item.      
46    inline void AddDocEntry(gdcmDocEntry *e) {docEntries.push_back(e);};         
47
48    virtual bool AddEntry(gdcmDocEntry *Entry); // add to the List
49   
50    gdcmDocEntry *GetDocEntryByNumber(guint16 group, guint16 element);
51    gdcmDocEntry *GetDocEntryByName  (std::string Name);
52    
53    bool SetEntryByNumber(std::string val,guint16 group, guint16 element);                   
54     
55    virtual std::string GetEntryByNumber(guint16 group, guint16 element);
56
57    inline int GetSQItemNumber()
58       {return SQItemNumber;};
59
60    inline void SetSQItemNumber(int itemNumber)
61       {SQItemNumber=itemNumber;};     
62
63 protected:
64
65 // DocEntry related utilities 
66
67         
68 // Variables
69
70    /// \brief chained list of (Elementary) Doc Entries
71    ListDocEntry docEntries;
72   
73    /// \brief SQ Item ordinal number 
74    int SQItemNumber;
75
76    ///\brief pointer to the HTable of the gdcmDocument,
77    ///       (because we don't know it within any gdcmObject nor any gdcmSQItem)
78    TagDocEntryHT *ptagHT;
79        
80 private:
81
82
83 };
84
85 //-----------------------------------------------------------------------------
86 #endif