]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
* Change the DocEntry inheritance to RefCounter
[gdcm.git] / src / gdcmElementSet.h
index 12af9bc762120a35bdd2a46798891ad07169293a..d924c6e867ed2106d94a46d2f5c0667e5c622116 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmElementSet.h,v $
   Language:  C++
-  Date:      $Date: 2005/02/21 17:47:19 $
-  Version:   $Revision: 1.44 $
+  Date:      $Date: 2005/10/24 16:00:47 $
+  Version:   $Revision: 1.48 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -27,8 +27,6 @@
 
 namespace gdcm 
 {
-class ValEntry;
-class BinEntry;
 class SeqEntry;
 
 typedef std::map<TagKey, DocEntry *> TagDocEntryHT;
@@ -44,7 +42,7 @@ typedef std::map<TagKey, DocEntry *> TagDocEntryHT;
 class GDCM_EXPORT ElementSet : public DocEntrySet
 {
 public:
-   ElementSet(int);
+   ElementSet();
    ~ElementSet();
 
    virtual void Print(std::ostream &os = std::cout, 
@@ -54,14 +52,13 @@ public:
 
    bool AddEntry(DocEntry *Entry);
    bool RemoveEntry(DocEntry *EntryToRemove);
-   bool RemoveEntryNoDestroy(DocEntry *EntryToRemove);
    void ClearEntry();
    
    DocEntry *GetFirstEntry();
    DocEntry *GetNextEntry();
    DocEntry *GetDocEntry(uint16_t group, uint16_t elem);
    /// Tells us if the ElementSet contains no entry
-   bool IsEmpty() { return TagHT.empty(); };
+   bool IsEmpty() { return TagHT.empty(); }
 
 protected:
 
@@ -71,8 +68,6 @@ private:
    TagDocEntryHT TagHT;
    /// iterator, used to visit the TagHT variable
    TagDocEntryHT::iterator ItTagHT;
-   /// iterator, used to visit the TagHT variable, seeking only for ValEntries
-   TagDocEntryHT::iterator ItValEntryTagHT;
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------