]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirMeta.cxx
Coding Style + Doxygenation
[gdcm.git] / src / gdcmDicomDirMeta.cxx
index f0657a5c130fe293af929939601a149678aaa04f..05ef4358200a760dea52a7614129167390432077 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: 2005/01/06 20:03:27 $
+  Version:   $Revision: 1.20 $
                                                                                 
   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 
 {
@@ -29,10 +30,9 @@ namespace gdcm
  * \ingroup DicomDirMeta
  * \brief  Constructor
  */ 
-DicomDirMeta::DicomDirMeta(TagDocEntryHT* ptagHT):
-   DicomDirObject(ptagHT)
+DicomDirMeta::DicomDirMeta():
+   DicomDirObject()
 {
-
 }
 
 /**
@@ -41,7 +41,6 @@ DicomDirMeta::DicomDirMeta(TagDocEntryHT* ptagHT):
  */
 DicomDirMeta::~DicomDirMeta() 
 {
-   
 }
 
 //-----------------------------------------------------------------------------
@@ -49,14 +48,18 @@ DicomDirMeta::~DicomDirMeta()
 /**
  * \brief   Prints the Meta Elements
  */ 
-void DicomDirMeta::Print(std::ostreamos)
+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();    
+   {
+      (*i)->SetPrintLevel(PrintLevel);
+      (*i)->Print();
+      os << std::endl;
+   }
 }
 
 
@@ -68,12 +71,14 @@ void DicomDirMeta::Print(std::ostream& os)
  * \brief   Writes the Meta Elements
  * @return
  */ 
-void DicomDirMeta::Write(FILE* fp, FileType t)
+void DicomDirMeta::WriteContent(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)->WriteContent(fp, t);
+   }
 }
 
 //-----------------------------------------------------------------------------