X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.cxx;h=aaae71b88209a7d0e11f2e7db9339457f02a4f8a;hb=6acf56f6020297bbbc69362aa45ff363531560c4;hp=7d2c5668f48872f372df53459ee803d8c0d92afa;hpb=4b4569ba7d0829cf3782ff6b5bbe5ae1009466e6;p=gdcm.git diff --git a/src/gdcmDicomDirImage.cxx b/src/gdcmDicomDirImage.cxx index 7d2c5668..aaae71b8 100644 --- a/src/gdcmDicomDirImage.cxx +++ b/src/gdcmDicomDirImage.cxx @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirImage.cxx,v $ Language: C++ - Date: $Date: 2004/08/01 02:39:09 $ - Version: $Revision: 1.8 $ + 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.htm for details. + 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 @@ -24,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) { } /** @@ -65,7 +71,7 @@ void gdcmDicomDirImage::Print(std::ostream &os) } os << std::endl; - gdcmObject::Print(os); + gdcmDicomDirObject::Print(os); } //-----------------------------------------------------------------------------