]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirMeta.cxx
* vtk/vtkGdcmWriter.[h|cxx] : now can write stack of images.
[gdcm.git] / src / gdcmDicomDirMeta.cxx
index be4ecbfd679e931f04f5203c531beb2028d48e33..3942ee83b06c4041ca1d9506fd761057545cb1f4 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirMeta.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/12/03 17:13:18 $
-  Version:   $Revision: 1.16 $
+  Date:      $Date: 2004/12/06 11:37:38 $
+  Version:   $Revision: 1.18 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -18,6 +18,7 @@
 
 #include "gdcmDicomDirMeta.h"
 #include "gdcmDocument.h"
+#include "gdcmDocEntry.h"
 
 namespace gdcm 
 {
@@ -32,7 +33,6 @@ namespace gdcm
 DicomDirMeta::DicomDirMeta():
    DicomDirObject()
 {
-
 }
 
 /**
@@ -41,7 +41,6 @@ DicomDirMeta::DicomDirMeta():
  */
 DicomDirMeta::~DicomDirMeta() 
 {
-   
 }
 
 //-----------------------------------------------------------------------------
@@ -53,10 +52,13 @@ void DicomDirMeta::Print(std::ostream& os)
 {
    os << "META" << std::endl;
    // warning : META doesn't behave exactly like a Objet 
-   for (ListDocEntry::iterator i = DocEntries.begin();  
+   for (ListDocEntry::iterator i = DocEntries.begin();
         i != DocEntries.end();
         ++i)
-      (*i)->Print();    
+   {
+      (*i)->Print();
+      os << std::endl;
+   }
 }