]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.h
- now, DicomDir stuff stakes into account the 'new' structure
[gdcm.git] / src / gdcmDicomDirImage.h
index 719c36842f62774298aa0d478fe1c893983e65c6..dac05c642ee85fcb4b876ee8b5dde8a8e9ec1ec2 100644 (file)
@@ -1,19 +1,36 @@
-// gdcmDicomDirImage.h
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmDicomDirImage.h,v $
+  Language:  C++
+  Date:      $Date: 2004/08/26 15:29:52 $
+  Version:   $Revision: 1.7 $
+                                                                                
+  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 GDCMDICOMIMAGE_H
 #define GDCMDICOMIMAGE_H
 
 #include "gdcmObject.h"
 
 //-----------------------------------------------------------------------------
-class GDCM_EXPORT gdcmDicomDirImage : public gdcmObject {
+class GDCM_EXPORT gdcmDicomDirImage : public gdcmObject
+{
 public:
-   gdcmDicomDirImage(ListTag::iterator begin,ListTag::iterator end,
-              TagHeaderEntryHT *ptagHT, ListTag *plistEntries); 
+   gdcmDicomDirImage(gdcmSQItem *s, TagDocEntryHT *ptagHT); 
+   gdcmDicomDirImage(TagDocEntryHT *ptagHT); 
 
-   ~gdcmDicomDirImage(void);
+   ~gdcmDicomDirImage();
 
-   virtual void Print(std::ostream &os = std::cout);      
+   virtual void Print(std::ostream &os = std::cout);
 };
 
 //-----------------------------------------------------------------------------