]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirElement.h
reintroduce testing
[gdcm.git] / src / gdcmDicomDirElement.h
index 6a0e941012e10f34641f8fbf0243b82658036e64..cfbb4c638d0aa0df54af3dd1d08bf42bad4eb8ac 100644 (file)
@@ -25,8 +25,8 @@ typedef std::list<gdcmElement> ListDicomDirSerieElem;
 typedef std::list<gdcmElement> ListDicomDirImageElem;
 
 //-----------------------------------------------------------------------------
-/*
- * \defgroup gdcmDicomDirElement
+/**
+ * \ingroup gdcmDicomDirElement
  * \brief    gdcmDicomDirElement represents elements contained in a dicom dir
  *
  */
@@ -42,8 +42,6 @@ public:
     * \sa    SetPrintLevel
   */ 
    void Print(std::ostream &os);
-
-
 /**
  * \ingroup gdcmDicomDirElement
  * \brief   returns a reference to the chained List 
@@ -81,10 +79,16 @@ public:
       {return(DicomDirImageList);};
 
 private:
+   /// gdcmElements chained list, related to the MetaElements of DICOMDIR
    ListDicomDirMetaElem    DicomDirMetaList;
+   /// gdcmElements chained list, related to the PatientElements of DICOMDIR
    ListDicomDirPatientElem DicomDirPatientList;
+   /// gdcmElements chained list, related to the StudyElements of DICOMDIR
    ListDicomDirStudyElem   DicomDirStudyList;
+   /// gdcmElements chained list, related to the SerieElements of DICOMDIR
    ListDicomDirSerieElem   DicomDirSerieList;
+   /// gdcmElements chained list, related to the ImageElements of DICOMDIR
+   
    ListDicomDirImageElem   DicomDirImageList;
 };