]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.h
STYLE: Remove old comments
[gdcm.git] / src / gdcmDicomDirImage.h
index 719c36842f62774298aa0d478fe1c893983e65c6..2fc5738c847a7092386249e141b8b375a6f8109e 100644 (file)
@@ -1,20 +1,41 @@
-// gdcmDicomDirImage.h
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmDicomDirImage.h,v $
+  Language:  C++
+  Date:      $Date: 2005/02/01 13:11:49 $
+  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.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 {
+/**
+ * \brief   describes an IMAGE within a SERIE
+ * (DicomDirSerie) of a given DICOMDIR (DicomDir)
+ */
+ class GDCM_EXPORT DicomDirImage : public DicomDirObject
+{
 public:
-   gdcmDicomDirImage(ListTag::iterator begin,ListTag::iterator end,
-              TagHeaderEntryHT *ptagHT, ListTag *plistEntries); 
+   DicomDirImage(bool empty=false); 
+   ~DicomDirImage();
 
-   ~gdcmDicomDirImage(void);
-
-   virtual void Print(std::ostream &os = std::cout);      
+   void Print(std::ostream &os = std::cout, std::string const &indent = "" );
 };
-
+} // end namespace gdcm
 //-----------------------------------------------------------------------------
 #endif