]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
* CLEANUP_ROUND (3) for gdcmPixelConvert (nightmare stage)
[gdcm.git] / src / gdcmElementSet.h
index a410629e8a11ffa0d98638b19ef6323249492250..4123aaeefd7d1f0db08152fbaf451658ff045756 100644 (file)
@@ -1,4 +1,20 @@
-// gdcmElementSet.h
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmElementSet.h,v $
+  Language:  C++
+  Date:      $Date: 2004/09/27 08:39:07 $
+  Version:   $Revision: 1.17 $
+                                                                                
+  Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
+  l'Image). All rights reserved. See Doc/License.txt or
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
+                                                                                
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+                                                                                
+=========================================================================*/
 
 #ifndef GDCMELEMENTSET_H
 #define GDCMELEMENTSET_H
@@ -8,7 +24,12 @@
 #include "gdcmCommon.h"
 #include "gdcmDocEntrySet.h"
 
-typedef std::map<TagKey, gdcmDocEntry *> TagDocEntryHT;
+class gdcmValEntry;
+class gdcmBinEntry;
+class gdcmSeqEntry;
+
+
+typedef std::map<gdcmTagKey, gdcmDocEntry *> TagDocEntryHT;
 
 //-----------------------------------------------------------------------------
 
@@ -16,20 +37,31 @@ class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet
 {
 public:
    gdcmElementSet(int);
-   ~gdcmElementSet(void);
-   virtual bool AddEntry(gdcmDocEntry *Entry); // add to the H Table
+   ~gdcmElementSet();
+   virtual bool AddEntry(gdcmDocEntry *Entry);
+   bool RemoveEntry(gdcmDocEntry *EntryToRemove);
+   bool RemoveEntryNoDestroy(gdcmDocEntry *EntryToRemove);
+   
+   virtual void Print(std::ostream &os = std::cout); 
+   virtual void Write(FILE *fp, FileType filetype); 
 
-   virtual void Print        (std::ostream &os = std::cout); 
-    
-protected:
+   /// Accessor to \ref TagHT
+   // Do not expose this to user (public API) !
+   // I re-add it temporaryly JPRx
+   TagDocEntryHT &GetEntry() { return TagHT; };
 
-// Variables
 
+protected:
+// Variables
    /// Hash Table (map), to provide fast access
-   TagDocEntryHT tagHT; 
+   TagDocEntryHT TagHT; 
      
 private:
-   
+   /// Just for following ::GetTagHT()
+   friend class gdcmDocument;
+
+   /// Accessor to \ref TagHT
+   TagDocEntryHT* GetTagHT() { return &TagHT; };
 };
 
 //-----------------------------------------------------------------------------