]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirMeta.cxx
Stage 2 of names normalization
[gdcm.git] / src / gdcmDicomDirMeta.cxx
index b1e40f543df216e2f677d1e95de7b775780d431d..516150de0cd29c7635ccbe431ebab977b28d5312 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirMeta.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/16 04:50:41 $
-  Version:   $Revision: 1.21 $
+  Date:      $Date: 2005/01/20 16:16:42 $
+  Version:   $Revision: 1.24 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -19,6 +19,7 @@
 #include "gdcmDicomDirMeta.h"
 #include "gdcmDocument.h"
 #include "gdcmDocEntry.h"
+#include "gdcmGlobal.h"
 
 namespace gdcm 
 {
@@ -27,16 +28,20 @@ namespace gdcm
 // Constructor / Destructor
 
 /**
- * \ingroup DicomDirMeta
  * \brief  Constructor
  */ 
-DicomDirMeta::DicomDirMeta():
+DicomDirMeta::DicomDirMeta(bool empty):
    DicomDirObject()
 {
+   if( !empty )
+   {
+      ListDicomDirStudyElem const &elemList = 
+         Global::GetDicomDirElements()->GetDicomDirMetaElements();
+      FillObject(elemList);
+   }
 }
 
 /**
- * \ingroup DicomDirMeta
  * \brief   Canonical destructor.
  */
 DicomDirMeta::~DicomDirMeta() 
@@ -47,6 +52,8 @@ DicomDirMeta::~DicomDirMeta()
 // Print
 /**
  * \brief   Prints the Meta Elements
+ * @param os ostream to write to 
+ * @param   indent indent
  */ 
 void DicomDirMeta::Print(std::ostream &os, std::string const & )
 {
@@ -69,6 +76,8 @@ void DicomDirMeta::Print(std::ostream &os, std::string const & )
 
 /**
  * \brief   Writes the Meta Elements
+ * @param fp ofstream to write to
+ * @param t File Type 
  * @return
  */ 
 void DicomDirMeta::WriteContent(std::ofstream *fp, FileType t)
@@ -88,5 +97,4 @@ void DicomDirMeta::WriteContent(std::ofstream *fp, FileType t)
 // Private
 
 //-----------------------------------------------------------------------------
-
 } // end namespace gdcm