X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirImage.h;h=2fc5738c847a7092386249e141b8b375a6f8109e;hb=05c174bd812b9e375823d6a95683cb5036795a02;hp=dac05c642ee85fcb4b876ee8b5dde8a8e9ec1ec2;hpb=3fd520b58c8d1939994de2c63cc038c3e7ac9522;p=gdcm.git diff --git a/src/gdcmDicomDirImage.h b/src/gdcmDicomDirImage.h index dac05c64..2fc5738c 100644 --- a/src/gdcmDicomDirImage.h +++ b/src/gdcmDicomDirImage.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirImage.h,v $ Language: C++ - Date: $Date: 2004/08/26 15:29:52 $ - Version: $Revision: 1.7 $ + Date: $Date: 2005/02/01 13:11:49 $ + Version: $Revision: 1.16 $ 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 @@ -19,19 +19,23 @@ #ifndef GDCMDICOMIMAGE_H #define GDCMDICOMIMAGE_H -#include "gdcmObject.h" +#include "gdcmDicomDirObject.h" +namespace gdcm +{ //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirImage : public gdcmObject +/** + * \brief describes an IMAGE within a SERIE + * (DicomDirSerie) of a given DICOMDIR (DicomDir) + */ + class GDCM_EXPORT DicomDirImage : public DicomDirObject { public: - gdcmDicomDirImage(gdcmSQItem *s, TagDocEntryHT *ptagHT); - gdcmDicomDirImage(TagDocEntryHT *ptagHT); - - ~gdcmDicomDirImage(); + DicomDirImage(bool empty=false); + ~DicomDirImage(); - virtual void Print(std::ostream &os = std::cout); + void Print(std::ostream &os = std::cout, std::string const &indent = "" ); }; - +} // end namespace gdcm //----------------------------------------------------------------------------- #endif