X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=c87f0037a94ddaeeccb151675abe3bd1af6d0828;hb=c907ef7411a7ddef4192414a95fb7909798e5d02;hp=ae419146850584f0423711beea49e674ccb5c4b3;hpb=3fd520b58c8d1939994de2c63cc038c3e7ac9522;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index ae419146..c87f0037 100644 --- a/src/gdcmDicomDirSerie.h +++ b/src/gdcmDicomDirSerie.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.h,v $ Language: C++ - Date: $Date: 2004/08/26 15:29:52 $ - Version: $Revision: 1.7 $ + Date: $Date: 2005/01/20 16:16:42 $ + Version: $Revision: 1.23 $ 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,46 +19,45 @@ #ifndef GDCMDICOMDIRSERIE_H #define GDCMDICOMDIRSERIE_H -#include "gdcmObject.h" -#include "gdcmDicomDirImage.h" +#include "gdcmDicomDirObject.h" +namespace gdcm +{ +class DicomDirImage; //----------------------------------------------------------------------------- -typedef std::list ListDicomDirImage; +typedef std::list ListDicomDirImage; //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirSerie : public gdcmObject -{ -public: - gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT); - gdcmDicomDirSerie(TagDocEntryHT *ptagHT); - - ~gdcmDicomDirSerie(); - - virtual void Print(std::ostream &os = std::cout); - virtual void Write(FILE *fp, FileType t); /** - * \ingroup gdcmDicomDirSerie - * \brief returns the IMAGE chained List for this SERIE. + * \brief describes a SERIE within a within a STUDY + * (DicomDirStudy) of a given DICOMDIR (DicomDir) */ - ListDicomDirImage &GetDicomDirImages() { return images; }; -/** - * \ingroup gdcmDicomDirSerie - * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. - */ - void AddDicomDirImage(gdcmDicomDirImage *obj) { images.push_back(obj); }; +class GDCM_EXPORT DicomDirSerie : public DicomDirObject +{ +public: + DicomDirSerie(bool empty=false); + ~DicomDirSerie(); + + void Print( std::ostream &os = std::cout, std::string const & indent = "" ); + void WriteContent( std::ofstream *fp, FileType t ); + + // should avoid exposing internal mechanism + DicomDirImage *GetFirstImage(); + DicomDirImage *GetNextImage(); + DicomDirImage *GetLastImage(); + + /// adds the passed IMAGE to the IMAGE chained List for this SERIE. + void AddImage(DicomDirImage *obj) { Images.push_back(obj); }; + + DicomDirImage *NewImage(); -/** - * \ingroup gdcmDicomDirSerie - * \brief TODO - */ - gdcmDicomDirImage* NewImage(); - private: -/** -* \brief chained list of DicomDirImages -*/ - ListDicomDirImage images; -}; + ///chained list of DicomDirImages (to be exploited recursively) + ListDicomDirImage Images; + /// iterator on the DicomDirImages of the current DicomDirSerie + ListDicomDirImage::iterator ItImage; +}; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif