X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirElement.h;h=85a83b2b41d07439b49b44d474598a22489abb9f;hb=f163238b46fdd5a54c1b6b70549ab9466c101d14;hp=578dfa77783cc89864dd6680d7a24347d275123e;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmDicomDirElement.h b/src/gdcmDicomDirElement.h index 578dfa77..85a83b2b 100644 --- a/src/gdcmDicomDirElement.h +++ b/src/gdcmDicomDirElement.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirElement.h,v $ Language: C++ - Date: $Date: 2004/06/20 18:08:47 $ - Version: $Revision: 1.8 $ + Date: $Date: 2004/08/01 02:39:09 $ + Version: $Revision: 1.9 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -49,8 +49,8 @@ typedef std::list ListDicomDirImageElem; class GDCM_EXPORT gdcmDicomDirElement { public: - gdcmDicomDirElement(void); - ~gdcmDicomDirElement(void); + gdcmDicomDirElement(); + ~gdcmDicomDirElement(); /** * \brief canonical Printer @@ -62,36 +62,36 @@ public: * \brief returns a reference to the chained List * related to the META Elements of a DICOMDIR. */ - ListDicomDirMetaElem &GetDicomDirMetaElements(void) - {return(DicomDirMetaList);}; + ListDicomDirMetaElem &GetDicomDirMetaElements() + { return DicomDirMetaList; }; /** * \ingroup gdcmDicomDirElement * \brief returns a reference to the chained List * related to the PATIENT Elements of a DICOMDIR. */ - ListDicomDirPatientElem &GetDicomDirPatientElements(void) - {return(DicomDirPatientList);}; + ListDicomDirPatientElem &GetDicomDirPatientElements() + { return DicomDirPatientList; }; /** * \ingroup gdcmDicomDirElement * \brief returns a reference to the chained List * related to the STUDY Elements of a DICOMDIR. */ - ListDicomDirStudyElem &GetDicomDirStudyElements(void) - {return(DicomDirStudyList);}; + ListDicomDirStudyElem &GetDicomDirStudyElements() + { return DicomDirStudyList; }; /** * \ingroup gdcmDicomDirElement * \brief returns a reference to the chained List * related to the SERIE Elements of a DICOMDIR. */ - ListDicomDirSerieElem &GetDicomDirSerieElements(void) - {return(DicomDirSerieList);}; + ListDicomDirSerieElem &GetDicomDirSerieElements() + { return DicomDirSerieList; }; /** * \ingroup gdcmDicomDirElement * \brief returns a reference to the chained List * related to the IMAGE Elements of a DICOMDIR. */ - ListDicomDirImageElem &GetDicomDirImageElements(void) - {return(DicomDirImageList);}; + ListDicomDirImageElem &GetDicomDirImageElements() + { return DicomDirImageList; }; private: /// gdcmElements chained list, related to the MetaElements of DICOMDIR