]> Creatis software - gdcm.git/blobdiff - src/gdcmDocEntryArchive.h
Stage 2 of names normalization :
[gdcm.git] / src / gdcmDocEntryArchive.h
index bc67747688c1a090952ca3a0eb9e69901f31fdac..1c6b4c58d1ecb17f8aae5ee903d2e8301f904318 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocEntryArchive.h,v $
   Language:  C++
-  Date:      $Date: 2005/01/20 11:39:49 $
-  Version:   $Revision: 1.5 $
+  Date:      $Date: 2005/01/21 11:40:55 $
+  Version:   $Revision: 1.6 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -19,7 +19,7 @@
 #ifndef GDCMDOCENTRYARCHIVE_H
 #define GDCMDOCENTRYARCHIVE_H
 
-#include "gdcmHeader.h"
+#include "gdcmFile.h"
 
 namespace gdcm 
 {
@@ -27,17 +27,17 @@ namespace gdcm
 //-----------------------------------------------------------------------------
 /**
  * \brief Container 
- * It's goal is to change the Header correctly. At this time, the change is 
+ * It's goal is to change the File header correctly. At this time, the change is 
  * only made for the first level of the Document. In the future, it might 
  * consider Dicom Sequences (SeqEntry, within any SQItem).
  * The change is made by replacing a DocEntry by an other that is created
- * outside the class. The old value is kept. When we restore the Header
+ * outside the class. The old value is kept. When we restore the File
  * status, the added DocEntry is deleted and replaced by the old value.
  */
 class GDCM_EXPORT DocEntryArchive 
 {
 public:
-   DocEntryArchive(Header *header);
+   DocEntryArchive(File *f);
    ~DocEntryArchive();
 
    void Print(std::ostream &os = std::cout);
@@ -49,7 +49,7 @@ public:
    void ClearArchive(void);
 
 private:
-   TagDocEntryHT &HeaderHT;
+   TagDocEntryHT &HeaderHT;  // we keep the name HeaderHT
    TagDocEntryHT Archive;
 };
 } // end namespace gdcm