]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
* src/gdcmDocEntryArchive.[h|cxx] : bug fix and add a method to temporary
[gdcm.git] / src / gdcmElementSet.h
index 926bec2c619623727af84cdaffd471fbcd8c8994..6d93e2c056f56c1f09aec816b02da99dffad02cd 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmElementSet.h,v $
   Language:  C++
-  Date:      $Date: 2004/11/19 18:49:39 $
-  Version:   $Revision: 1.22 $
+  Date:      $Date: 2004/11/24 10:23:47 $
+  Version:   $Revision: 1.23 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -52,12 +52,17 @@ public:
    // A test is using it thus put it in public (matt)
    TagDocEntryHT const & GetTagHT() const { return TagHT; };
 
+   void Initialize();
+   DocEntry *GetNextEntry();
+
 protected:
     
 private:
 // Variables
    /// Hash Table (map), to provide fast access
    TagDocEntryHT TagHT; 
+   /// Hash Table (map) iterator, used to visit the TagHT variable
+   TagDocEntryHT::iterator ItTagHT; 
  
    friend class Document;
    friend class DicomDir; //For accessing private TagHT