]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.cxx
ENH: Add two new methods: GetCurrentThreadID and ProcessID. This could be usefull...
[gdcm.git] / src / gdcmDicomDirImage.cxx
index 036dc71576b90998c9976a9678fa9a3658084236..6ad054f8c9d6d72e423dde6c17cbfcbe867fed4b 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirImage.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/06 15:43:18 $
-  Version:   $Revision: 1.15 $
+  Date:      $Date: 2005/01/20 16:16:42 $
+  Version:   $Revision: 1.19 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 
 #include "gdcmDicomDirImage.h"
 #include "gdcmValEntry.h"
+#include "gdcmGlobal.h"
 
 namespace gdcm 
 {
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
 /**
- * \ingroup DicomDirImage
  * \brief  Constructor 
  */
-DicomDirImage::DicomDirImage():
+DicomDirImage::DicomDirImage(bool empty):
    DicomDirObject()
 {
+   if( !empty )
+   {
+      ListDicomDirImageElem const &elemList = 
+         Global::GetDicomDirElements()->GetDicomDirImageElements();
+      FillObject(elemList);
+   }
 }
+
 /**
- * \ingroup DicomDirImage
  * \brief   Canonical destructor.
  */
 DicomDirImage::~DicomDirImage() 
@@ -42,11 +48,12 @@ DicomDirImage::~DicomDirImage()
 //-----------------------------------------------------------------------------
 // Print
 /**
- * \ingroup DicomDirImage
  * \brief   Prints the Object
+ * @param os ostream to write to
+ * @param   indent indent
  * @return
  */ 
-void DicomDirImage::Print(std::ostream &os)
+void DicomDirImage::Print(std::ostream &os, std::string const & )
 {
    os << "IMAGE : ";
    for(ListDocEntry::iterator i = DocEntries.begin();
@@ -55,7 +62,7 @@ void DicomDirImage::Print(std::ostream &os)
    {
       if( (*i)->GetGroup() == 0x0004 && (*i)->GetElement() == 0x1500 )
       {
-         os << ((ValEntry *)(*i))->GetValue(); //FIXME
+         os << (dynamic_cast<ValEntry *>(*i))->GetValue(); //FIXME
       }
    }
    os << std::endl;