]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
ENH: Minor tweak so that user find documentation easily
[gdcm.git] / src / gdcmElementSet.h
index 985adfdc2082eb9f48551f4906bed23b3660ade8..0c58214d7de0ab18104709fec7e5fdc6eb28db2c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmElementSet.h,v $
   Language:  C++
-  Date:      $Date: 2004/09/03 04:16:29 $
-  Version:   $Revision: 1.12 $
+  Date:      $Date: 2004/09/17 13:11:16 $
+  Version:   $Revision: 1.16 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -39,22 +39,29 @@ public:
    gdcmElementSet(int);
    ~gdcmElementSet();
    virtual bool AddEntry(gdcmDocEntry *Entry);
-   virtual bool RemoveEntry(gdcmDocEntry *EntryToRemove);
-
+   bool RemoveEntry(gdcmDocEntry *EntryToRemove);
+   bool RemoveEntryNoDestroy(gdcmDocEntry *EntryToRemove);
+   
    virtual void Print(std::ostream &os = std::cout); 
    virtual void Write(FILE *fp, FileType filetype); 
 
-   /// Accessor to \ref gdcmElementSet::tagHT
+   /// Accessor to \ref TagHT
    // Do not expose this to user (public API) !
+   // I re-add it temporaryly JPRx
    TagDocEntryHT &GetEntry() { return TagHT; };
 
+
 protected:
 // Variables
    /// Hash Table (map), to provide fast access
    TagDocEntryHT TagHT; 
      
 private:
-   //friend class gdcmDicomDir;
+   /// Just for following ::GetTagHT()
+   friend class gdcmDocument;
+
+   /// Accessor to \ref TagHT
+   TagDocEntryHT* GetTagHT() { return &TagHT; };
 };
 
 //-----------------------------------------------------------------------------