X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.cxx;h=688886fd7bde7a3a0a0ee773067b0fe7df1dd24d;hb=0ad9dae4659b21bfd5c834c1af724eab4dcdf4f6;hp=74632269db1fb4df35fd309dff0ee4ea5b0c4e18;hpb=ef0c45b292557174c768c2cc7fc11fea4d57e218;p=gdcm.git diff --git a/src/gdcmDicomDirImage.cxx b/src/gdcmDicomDirImage.cxx index 74632269..688886fd 100644 --- a/src/gdcmDicomDirImage.cxx +++ b/src/gdcmDicomDirImage.cxx @@ -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(*i))->GetValue(); //FIXME } } os << std::endl;