]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.cxx
PLEASE : keep on waiting for the final version !
[gdcm.git] / src / gdcmDicomDirImage.cxx
index 00a54a2018148e3c0b92d4b29b6cb987ae36575c..c9fd47b76a04ca6a6d827d0bf5a35fc372b81350 100644 (file)
@@ -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()