]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
Bugfixes. --- JPR (with frog)
[gdcm.git] / src / gdcmElementSet.h
index f4003e57151a549f269d410d3ea61be5288ddb1d..a7b8b672b4976e3f09d816c05f80b2d8092b3f32 100644 (file)
@@ -1,40 +1,56 @@
-// 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"
-#include "gdcmDocEntry.h"
 
-#include <map>
-typedef std::string TagKey;
-typedef std::map<TagKey, gdcmDocEntry *> TagDocEntryHT;
+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(void);
+   gdcmElementSet(int);
    ~gdcmElementSet(void);
-   virtual bool AddEntry(gdcmDocEntry *Entry); // add to the H Table
-
-  
-protected:
-
-private:
-
-   // DocEntry related utilities    
-   virtual gdcmDocEntry *NewDocEntryByNumber(guint16 group,
-                                             guint16 element);
-   virtual gdcmDocEntry *NewDocEntryByName  (std::string Name);  
+   virtual bool AddEntry(gdcmDocEntry *Entry);
+   virtual bool RemoveEntry(gdcmDocEntry *EntryToRemove);
 
+   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;   
+   TagDocEntryHT tagHT; 
+     
+private:
    
 };