X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.cxx;h=036dc71576b90998c9976a9678fa9a3658084236;hb=03acf3c119c6657129b8aeae8cb2205e481a105b;hp=1d08986925166d908e0fa1a54535d56206ecc44c;hpb=55d77e0913ff360d639af1841c70d14dc8687584;p=gdcm.git diff --git a/src/gdcmDicomDirImage.cxx b/src/gdcmDicomDirImage.cxx index 1d089869..036dc715 100644 --- a/src/gdcmDicomDirImage.cxx +++ b/src/gdcmDicomDirImage.cxx @@ -1,58 +1,66 @@ -// gdcmDicomDirImage.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirImage.cxx,v $ + Language: C++ + Date: $Date: 2005/01/06 15:43:18 $ + Version: $Revision: 1.15 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #include "gdcmDicomDirImage.h" +#include "gdcmValEntry.h" +namespace gdcm +{ //----------------------------------------------------------------------------- // Constructor / Destructor - /** - * \ingroup gdcmDicomDirImage - * \brief - * @param begin iterator (inside the gdcmParser chained list) - * on the first Header Entry (i.e Dicom Element) - * related to this "IMAGE" part - * @param end iterator (inside the gdcmParser chained list) - * on the last Header Entry (i.e Dicom Element) - * related to this 'IMAGE' part - * @param ptagHT pointer to the HTable (gdcmObject needs it - * to build the gdcmHeaderEntries) - * @param plistEntries pointer to the chained List (gdcmObject needs it - * to build the gdcmHeaderEntries) + * \ingroup DicomDirImage + * \brief Constructor */ -gdcmDicomDirImage::gdcmDicomDirImage(ListTag::iterator begin, - ListTag::iterator end, - TagHeaderEntryHT *ptagHT, - ListTag *plistEntries): - gdcmObject(begin,end,ptagHT,plistEntries) +DicomDirImage::DicomDirImage(): + DicomDirObject() { } - /** - * \ingroup gdcmDicomDirImage + * \ingroup DicomDirImage * \brief Canonical destructor. */ -gdcmDicomDirImage::~gdcmDicomDirImage() +DicomDirImage::~DicomDirImage() { } //----------------------------------------------------------------------------- // Print /** - * \ingroup gdcmDicomDirImage + * \ingroup DicomDirImage * \brief Prints the Object * @return */ -void gdcmDicomDirImage::Print(std::ostream &os) +void DicomDirImage::Print(std::ostream &os) { - os<<"IMAGE : "; - for(ListTag::iterator i=beginObj;i!=endObj;++i) + os << "IMAGE : "; + for(ListDocEntry::iterator i = DocEntries.begin(); + i!= DocEntries.end(); + ++i) { - if( ((*i)->GetGroup()==0x0004) && ((*i)->GetElement()==0x1500) ) - os<<(*i)->GetValue(); + if( (*i)->GetGroup() == 0x0004 && (*i)->GetElement() == 0x1500 ) + { + os << ((ValEntry *)(*i))->GetValue(); //FIXME + } } - os<