]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirMeta.cxx
some more doxygenation
[gdcm.git] / src / gdcmDicomDirMeta.cxx
index 945847609147be8daf65a680e901b1f920acd210..3d62dc360e98e0b1efed5905670dbf791130e9fd 100644 (file)
@@ -4,14 +4,26 @@
 
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
+
 /**
- * \ingroup gdcmDicomDirMeta
- * \brief   
- * @param   begin iterator of begin for the object
- * @param   end   iterator of end   for the object
- */
-gdcmDicomDirMeta::gdcmDicomDirMeta(ListTag::iterator begin,ListTag::iterator end):
-   gdcmObject(begin,end)
+ * \ingroup gdcmMeta
+ * \brief  Constructor
+ * @param  begin  iterator (inside the gdcmParser chained list)
+ *                on the first Header Entry (i.e Dicom Element)
+ *                related to the "META" part
+ * @param  end  iterator  (inside the gdcmParser chained list)
+ *              on the last Header Entry (i.e Dicom Element) 
+ *              related to the 'META' 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)
+ */ 
+gdcmDicomDirMeta::gdcmDicomDirMeta(ListTag::iterator begin,
+                                   ListTag::iterator end,
+                                  TagHeaderEntryHT *ptagHT, 
+                                  ListTag *plistEntries):
+   gdcmObject(begin,end,ptagHT,plistEntries)
 {
 }