]> Creatis software - gdcm.git/blob - src/gdcmSQItem.h
- guint16 and guint32 removed. Use ISO C uint16_t, uint32_t instead.
[gdcm.git] / src / gdcmSQItem.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSQItem.h,v $
5   Language:  C++
6   Date:      $Date: 2004/07/02 13:55:28 $
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 #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    ListDocEntry &GetDocEntries() { return docEntries; };
43    
44    /// \brief   adds the passed DocEntry to the DocEntry chained List for
45    /// this SQ Item.      
46    void AddDocEntry(gdcmDocEntry *e) { docEntries.push_back(e); };
47
48    virtual bool AddEntry(gdcmDocEntry *Entry); // add to the List
49   
50    gdcmDocEntry *GetDocEntryByNumber(uint16_t group, uint16_t element);
51    gdcmDocEntry *GetDocEntryByName  (std::string Name);
52    
53    bool SetEntryByNumber(std::string val, uint16_t group, uint16_t element);                   
54     
55    virtual std::string GetEntryByNumber(uint16_t group, uint16_t element);
56
57    int GetSQItemNumber() { return SQItemNumber; };
58
59    void SetSQItemNumber(int itemNumber) { SQItemNumber=itemNumber; };
60
61 protected:
62
63 // Variables
64
65    /// \brief chained list of (Elementary) Doc Entries
66    ListDocEntry docEntries;
67   
68    /// \brief SQ Item ordinal number 
69    int SQItemNumber;
70
71    ///\brief pointer to the HTable of the gdcmDocument,
72    ///       (because we don't know it within any gdcmObject nor any gdcmSQItem)
73    TagDocEntryHT *ptagHT;
74        
75 private:
76
77
78 };
79
80 //-----------------------------------------------------------------------------
81 #endif