]> Creatis software - gdcm.git/blobdiff - src/gdcmDocEntrySet.h
* src/gdcmDocument.cxx : bug fix on potential memory leak
[gdcm.git] / src / gdcmDocEntrySet.h
index 16cc0e9954b7c4e4286c652abe0004eb592d1475..e1b94f2a483fbd06f13429615131d819f31335bb 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocEntrySet.h,v $
   Language:  C++
-  Date:      $Date: 2005/01/24 16:10:52 $
-  Version:   $Revision: 1.42 $
+  Date:      $Date: 2005/01/25 11:11:58 $
+  Version:   $Revision: 1.43 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -64,6 +64,9 @@ public:
 
    // ------- '... =0;' stands for 'Pure Virtual'
 
+   /// \brief Remove all Entry in the entry set
+   virtual void ClearEntry() = 0;
+
    /// \brief adds any type of entry to the entry set
    virtual bool AddEntry(DocEntry *Entry) = 0;
 
@@ -96,6 +99,9 @@ public:
    ///        identified by its (group,elem) - Sorry for the name !...-
    virtual std::string GetEntryValue(uint16_t group, uint16_t elem) = 0;
 
+   virtual DocEntry *GetFirstEntry()=0;
+   virtual DocEntry *GetNextEntry()=0;
+
    DictEntry *NewVirtualDictEntry(uint16_t group, 
                                   uint16_t elem,
                                   TagName const &vr     = GDCM_UNKNOWN,