]> Creatis software - gdcm.git/blob - src/gdcmDocEntryArchive.h
bc67747688c1a090952ca3a0eb9e69901f31fdac
[gdcm.git] / src / gdcmDocEntryArchive.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDocEntryArchive.h,v $
5   Language:  C++
6   Date:      $Date: 2005/01/20 11:39:49 $
7   Version:   $Revision: 1.5 $
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 GDCMDOCENTRYARCHIVE_H
20 #define GDCMDOCENTRYARCHIVE_H
21
22 #include "gdcmHeader.h"
23
24 namespace gdcm 
25 {
26
27 //-----------------------------------------------------------------------------
28 /**
29  * \brief Container 
30  * It's goal is to change the Header correctly. At this time, the change is 
31  * only made for the first level of the Document. In the future, it might 
32  * consider Dicom Sequences (SeqEntry, within any SQItem).
33  * The change is made by replacing a DocEntry by an other that is created
34  * outside the class. The old value is kept. When we restore the Header
35  * status, the added DocEntry is deleted and replaced by the old value.
36  */
37 class GDCM_EXPORT DocEntryArchive 
38 {
39 public:
40    DocEntryArchive(Header *header);
41    ~DocEntryArchive();
42
43    void Print(std::ostream &os = std::cout);
44
45    bool Push(DocEntry *newEntry);
46    bool Push(uint16_t group,uint16_t elem);
47    bool Restore(uint16_t group,uint16_t elem);
48
49    void ClearArchive(void);
50
51 private:
52    TagDocEntryHT &HeaderHT;
53    TagDocEntryHT Archive;
54 };
55 } // end namespace gdcm
56
57 //-----------------------------------------------------------------------------
58 #endif