X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.cxx;h=f14f92bc71656889a3a3770295633033ddeb2a6a;hb=f26ff7a4f6b6cac83f3bf3740beadc5b21946dd8;hp=7d2c5668f48872f372df53459ee803d8c0d92afa;hpb=4b4569ba7d0829cf3782ff6b5bbe5ae1009466e6;p=gdcm.git diff --git a/src/gdcmDicomDirImage.cxx b/src/gdcmDicomDirImage.cxx index 7d2c5668..f14f92bc 100644 --- a/src/gdcmDicomDirImage.cxx +++ b/src/gdcmDicomDirImage.cxx @@ -3,8 +3,8 @@ 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/23 10:47:10 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -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); } //-----------------------------------------------------------------------------