]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.cxx
Some normalizations :
[gdcm.git] / src / gdcmDicomDirImage.cxx
index 74632269db1fb4df35fd309dff0ee4ea5b0c4e18..688886fd7bde7a3a0a0ee773067b0fe7df1dd24d 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirImage.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/18 07:53:42 $
-  Version:   $Revision: 1.17 $
+  Date:      $Date: 2005/01/23 10:12:33 $
+  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 "gdcmDicomDirImage.h"
 #include "gdcmValEntry.h"
+#include "gdcmGlobal.h"
 
 namespace gdcm 
 {
@@ -26,10 +27,17 @@ namespace gdcm
 /**
  * \brief  Constructor 
  */
-DicomDirImage::DicomDirImage():
+DicomDirImage::DicomDirImage(bool empty):
    DicomDirObject()
 {
+   if( !empty )
+   {
+      ListDicomDirImageElem const &elemList = 
+         Global::GetDicomDirElements()->GetDicomDirImageElements();
+      FillObject(elemList);
+   }
 }
+
 /**
  * \brief   Canonical destructor.
  */
@@ -42,6 +50,7 @@ DicomDirImage::~DicomDirImage()
 /**
  * \brief   Prints the Object
  * @param os ostream to write to
+ * @param indent Indentation string to be prepended during printing
  * @return
  */ 
 void DicomDirImage::Print(std::ostream &os, std::string const & )
@@ -53,7 +62,7 @@ void DicomDirImage::Print(std::ostream &os, std::string const & )
    {
       if( (*i)->GetGroup() == 0x0004 && (*i)->GetElement() == 0x1500 )
       {
-         os << ((ValEntry *)(*i))->GetValue(); //FIXME
+         os << (dynamic_cast<ValEntry *>(*i))->GetValue(); //FIXME
       }
    }
    os << std::endl;