X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.cxx;h=aaae71b88209a7d0e11f2e7db9339457f02a4f8a;hb=c0a5f1faf5afe0538a54ee76c15de6dc8bbb0177;hp=a8905981bc6e7102c4b1025bfa937399a490a578;hpb=30d2b02b938fe912d866b40ca2b9842961481ab2;p=gdcm.git diff --git a/src/gdcmDicomDirImage.cxx b/src/gdcmDicomDirImage.cxx index a8905981..aaae71b8 100644 --- a/src/gdcmDicomDirImage.cxx +++ b/src/gdcmDicomDirImage.cxx @@ -1,5 +1,21 @@ -// gdcmDicomDirImage.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirImage.cxx,v $ + Language: C++ + Date: $Date: 2004/09/27 08:39:06 $ + Version: $Revision: 1.11 $ + + 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" //----------------------------------------------------------------------------- @@ -8,18 +24,24 @@ /** * \ingroup gdcmDicomDirImage * \brief Constructor - * @param s SQ Item holdoing the elements - * @param ptagHT pointer to the HTable (gdcmObject needs it + * @param s SQ Item holding the elements + * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it * to build the gdcmDocEntries) */ gdcmDicomDirImage::gdcmDicomDirImage(gdcmSQItem *s, TagDocEntryHT *ptagHT): - gdcmObject(ptagHT) + gdcmDicomDirObject(ptagHT) { docEntries = s->GetDocEntries(); } +/** + * \ingroup gdcmDicomDirImage + * \brief Constructor + * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it + * to build the gdcmDocEntries) + */ gdcmDicomDirImage::gdcmDicomDirImage(TagDocEntryHT *ptagHT): - gdcmObject(ptagHT) + gdcmDicomDirObject(ptagHT) { } /** @@ -39,15 +61,17 @@ gdcmDicomDirImage::~gdcmDicomDirImage() */ void gdcmDicomDirImage::Print(std::ostream &os) { - os<<"IMAGE : "; + os << "IMAGE : "; for(ListDocEntry::iterator i=docEntries.begin();i!=docEntries.end();++i) { - if( ((*i)->GetGroup()==0x0004) && ((*i)->GetElement()==0x1500) ) - os<<((gdcmValEntry *)(*i))->GetValue(); + if( (*i)->GetGroup() == 0x0004 && (*i)->GetElement() == 0x1500 ) + { + os << ((gdcmValEntry *)(*i))->GetValue(); //FIXME + } } - os<