]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
* Test/PrintAllDocument.cxx: looping on files is now effective. It used to
[gdcm.git] / src / gdcmElementSet.h
index 7d7dd19a059b33b061e7c9940890a5522d72463b..a7b8b672b4976e3f09d816c05f80b2d8092b3f32 100644 (file)
@@ -1,21 +1,59 @@
-// gdcmElementSet.h
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmElementSet.h,v $
+  Language:  C++
+  Date:      $Date: 2004/06/22 13:47:33 $
+  Version:   $Revision: 1.9 $
+                                                                                
+  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.htm 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"
+
+class gdcmValEntry;
+class gdcmBinEntry;
+class gdcmSeqEntry;
+
+
+typedef std::map<TagKey, gdcmDocEntry *> TagDocEntryHT;
+
 //-----------------------------------------------------------------------------
 
-class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet 
+class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet
 {
 public:
+   gdcmElementSet(int);
+   ~gdcmElementSet(void);
+   virtual bool AddEntry(gdcmDocEntry *Entry);
+   virtual bool RemoveEntry(gdcmDocEntry *EntryToRemove);
 
-protected:
+   virtual void Print(std::ostream &os = std::cout); 
+   virtual void Write(FILE *fp, FileType filetype); 
 
+    
+protected:
+// Variables
+   /// Hash Table (map), to provide fast access
+   TagDocEntryHT tagHT; 
+     
 private:
-
+   
 };
 
-
 //-----------------------------------------------------------------------------
 #endif