X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirElement.h;h=1f063a089c0f2637909c6f8b628609aef3fbce33;hb=67845c7dc1241480f5c5fcfa0cfc2e86918dad1e;hp=578dfa77783cc89864dd6680d7a24347d275123e;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmDicomDirElement.h b/src/gdcmDicomDirElement.h index 578dfa77..1f063a08 100644 --- a/src/gdcmDicomDirElement.h +++ b/src/gdcmDicomDirElement.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirElement.h,v $ Language: C++ - Date: $Date: 2004/06/20 18:08:47 $ - Version: $Revision: 1.8 $ + Date: $Date: 2004/09/27 08:39:06 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or - http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -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