]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
* ENH: added some utility method that builds a flat dictionnary
[gdcm.git] / src / gdcmElementSet.h
index 7d7dd19a059b33b061e7c9940890a5522d72463b..0c58214d7de0ab18104709fec7e5fdc6eb28db2c 100644 (file)
@@ -1,21 +1,69 @@
-// gdcmElementSet.h
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmElementSet.h,v $
+  Language:  C++
+  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
+  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<gdcmTagKey, gdcmDocEntry *> TagDocEntryHT;
+
 //-----------------------------------------------------------------------------
 
-class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet 
+class GDCM_EXPORT gdcmElementSet : public gdcmDocEntrySet
 {
 public:
+   gdcmElementSet(int);
+   ~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); 
+
+   /// Accessor to \ref TagHT
+   // Do not expose this to user (public API) !
+   // I re-add it temporaryly JPRx
+   TagDocEntryHT &GetEntry() { return TagHT; };
 
-protected:
 
+protected:
+// Variables
+   /// Hash Table (map), to provide fast access
+   TagDocEntryHT TagHT; 
+     
 private:
+   /// Just for following ::GetTagHT()
+   friend class gdcmDocument;
 
+   /// Accessor to \ref TagHT
+   TagDocEntryHT* GetTagHT() { return &TagHT; };
 };
 
-
 //-----------------------------------------------------------------------------
 #endif