]> 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 a410629e8a11ffa0d98638b19ef6323249492250..6d93e2c056f56c1f09aec816b02da99dffad02cd 100644 (file)
@@ -1,37 +1,74 @@
-// gdcmElementSet.h
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmElementSet.h,v $
+  Language:  C++
+  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
+  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
 
-#include <map>
-#include <iostream>
 #include "gdcmCommon.h"
 #include "gdcmDocEntrySet.h"
+#include <map>
+#include <iostream>
 
-typedef std::map<TagKey, gdcmDocEntry *> TagDocEntryHT;
+class ValEntry;
+class BinEntry;
+class SeqEntry;
+
+namespace gdcm 
+{
+typedef std::map<TagKey, DocEntry *> TagDocEntryHT;
 
 //-----------------------------------------------------------------------------
 
-class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet
+class GDCM_EXPORT ElementSet : public DocEntrySet
 {
 public:
-   gdcmElementSet(int);
-   ~gdcmElementSet(void);
-   virtual bool AddEntry(gdcmDocEntry *Entry); // add to the H Table
+   ElementSet(int);
+   ~ElementSet();
 
-   virtual void Print        (std::ostream &os = std::cout); 
-    
-protected:
+   bool AddEntry(DocEntry *Entry);
+   bool RemoveEntry(DocEntry *EntryToRemove);
+   bool RemoveEntryNoDestroy(DocEntry *EntryToRemove);
+   
+   void Print(std::ostream &os = std::cout); 
+   void Write(std::ofstream *fp, FileType filetype); 
+   
+   /// Accessor to \ref TagHT
+   // Do not expose this to user (public API) ! 
+   // A test is using it thus put it in public (matt)
+   TagDocEntryHT const & GetTagHT() const { return TagHT; };
 
-// Variables
+   void Initialize();
+   DocEntry *GetNextEntry();
 
-   /// Hash Table (map), to provide fast access
-   TagDocEntryHT tagHT; 
-     
+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
+   friend class DocEntryArchive; //For accessing private TagHT
 };
-
+} // end namespace gdcm
 //-----------------------------------------------------------------------------
 #endif