X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirElement.h;h=cfbb4c638d0aa0df54af3dd1d08bf42bad4eb8ac;hb=c5618e6b8276e1b21bbea354fe8bcba3c78eb4bd;hp=6a0e941012e10f34641f8fbf0243b82658036e64;hpb=1b5fd950fda2fb2dbe9aa69bac545a8b588b71d0;p=gdcm.git diff --git a/src/gdcmDicomDirElement.h b/src/gdcmDicomDirElement.h index 6a0e9410..cfbb4c63 100644 --- a/src/gdcmDicomDirElement.h +++ b/src/gdcmDicomDirElement.h @@ -25,8 +25,8 @@ typedef std::list ListDicomDirSerieElem; typedef std::list 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; };