]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirMeta.cxx
* FIX: src/* fix the doxygen warnings.
[gdcm.git] / src / gdcmDicomDirMeta.cxx
index f0657a5c130fe293af929939601a149678aaa04f..985d7516e08cd220f590ea70b0c30e0237085773 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirMeta.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/10/12 04:35:44 $
-  Version:   $Revision: 1.12 $
+  Date:      $Date: 2004/10/25 03:35:19 $
+  Version:   $Revision: 1.14 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -53,8 +53,8 @@ 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();  
-        i != docEntries.end();
+   for (ListDocEntry::iterator i = DocEntries.begin();  
+        i != DocEntries.end();
         ++i)
       (*i)->Print();    
 }
@@ -68,12 +68,14 @@ void DicomDirMeta::Print(std::ostream& os)
  * \brief   Writes the Meta Elements
  * @return
  */ 
-void DicomDirMeta::Write(FILE* fp, FileType t)
+void DicomDirMeta::Write(std::ofstream* fp, FileType t)
 {   
-   for (ListDocEntry::iterator i = docEntries.begin();  
-        i != docEntries.end();
-        ++i)
-      (*i)->Write(fp, t);   
+   for (ListDocEntry::iterator i = DocEntries.begin();  
+                              i != DocEntries.end();
+                              ++i)
+   {
+      (*i)->Write(fp, t);
+   }
 }
 
 //-----------------------------------------------------------------------------