]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.h
BUG: Remove tons of mem leaks. There are still plenty that explains why gdcm is dog...
[gdcm.git] / src / gdcmDicomDirImage.h
index 4f1173d99c8af7f41c28b7b07fdee504643719f3..a1e101f526650d142a1025e1ec34f7a1dcf6b362 100644 (file)
@@ -1,19 +1,39 @@
-// gdcmDicomDirImage.h
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmDicomDirImage.h,v $
+  Language:  C++
+  Date:      $Date: 2004/10/25 03:35:19 $
+  Version:   $Revision: 1.11 $
+                                                                                
+  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 GDCMDICOMIMAGE_H
 #define GDCMDICOMIMAGE_H
 
-#include "gdcmObject.h"
+#include "gdcmDicomDirObject.h"
 
+namespace gdcm 
+{
 //-----------------------------------------------------------------------------
-class GDCM_EXPORT gdcmDicomDirImage : public gdcmObject 
+class GDCM_EXPORT DicomDirImage : public DicomDirObject
 {
 public:
-   gdcmDicomDirImage(ListTag::iterator begin,ListTag::iterator end);
-   ~gdcmDicomDirImage(void);
+   DicomDirImage(SQItem *s, TagDocEntryHT *ptagHT); 
+   DicomDirImage(TagDocEntryHT *ptagHT); 
 
-   virtual void Print(std::ostream &os = std::cout);
-};
+   ~DicomDirImage();
 
+   void Print(std::ostream &os = std::cout);
+};
+} // end namespace gdcm
 //-----------------------------------------------------------------------------
 #endif