X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.cxx;h=c9fd47b76a04ca6a6d827d0bf5a35fc372b81350;hb=5311d94213fb3d388924e1d5b8a9e11d1d40fcb3;hp=00a54a2018148e3c0b92d4b29b6cb987ae36575c;hpb=22f785a2627d1e7823701193bd7624739a3e033b;p=gdcm.git diff --git a/src/gdcmDicomDirImage.cxx b/src/gdcmDicomDirImage.cxx index 00a54a20..c9fd47b7 100644 --- a/src/gdcmDicomDirImage.cxx +++ b/src/gdcmDicomDirImage.cxx @@ -4,19 +4,31 @@ //----------------------------------------------------------------------------- // Constructor / Destructor + /** * \ingroup gdcmDicomDirImage - * \brief - * @param begin iterator of begin for the object - * @param end iterator of end for the object + * \brief Constructor + * @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) */ -gdcmDicomDirImage::gdcmDicomDirImage(ListTag::iterator begin,ListTag::iterator end): - gdcmObject(begin,end) +gdcmDicomDirImage::gdcmDicomDirImage(ListTag::iterator begin, + ListTag::iterator end, + TagHeaderEntryHT *ptagHT, + ListTag *plistEntries): + gdcmObject(begin,end,ptagHT,plistEntries) { } /** - * \ingroup gdcmImage + * \ingroup gdcmDicomDirImage * \brief Canonical destructor. */ gdcmDicomDirImage::~gdcmDicomDirImage()