X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=81e92bdda88a36b9a09618a9cff2483702337b9e;hb=0416947420d9168401c99e7fbf0dca0a081c9175;hp=d9df59fd0cf43dad823bad8d9f6e442414970276;hpb=55d77e0913ff360d639af1841c70d14dc8687584;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index d9df59fd..81e92bdd 100644 --- a/src/gdcmDicomDirSerie.h +++ b/src/gdcmDicomDirSerie.h @@ -1,48 +1,62 @@ -// gdcmDicomDirSerie.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirSerie.h,v $ + Language: C++ + Date: $Date: 2005/02/04 16:51:36 $ + Version: $Revision: 1.27 $ + + 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.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #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 +/** + * \brief describes a SERIE within a within a STUDY + * (DicomDirStudy) of a given DICOMDIR (DicomDir) + */ +class GDCM_EXPORT DicomDirSerie : public DicomDirObject { public: - gdcmDicomDirSerie(ListTag::iterator begin,ListTag::iterator end, - TagHeaderEntryHT *ptagHT, ListTag *plistEntries); - ~gdcmDicomDirSerie(void); + DicomDirSerie(bool empty=false); + ~DicomDirSerie(); - virtual void Print(std::ostream &os = std::cout); -/** - * \ingroup gdcmDicomDirSerie - * \brief returns the IMAGE chained List for this SERIE. - */ - inline ListDicomDirImage &GetDicomDirImages() - {return images;}; -/** - * \ingroup gdcmDicomDirSerie - * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. - */ - inline void AddDicomDirImage(gdcmDicomDirImage *obj) - {images.push_back(obj);}; + void Print( std::ostream &os = std::cout, std::string const &indent = "" ); + void WriteContent( std::ofstream *fp, FileType t ); + + // Image methods + DicomDirImage *NewImage(); + /// Add a new gdcm::DicomDirImage to the Serie + void AddImage(DicomDirImage *obj) { Images.push_back(obj); }; + void ClearImage(); + + DicomDirImage *GetFirstImage(); + DicomDirImage *GetNextImage(); -/** - * \ingroup gdcmDicomDirSerie - * \brief TODO - */ - gdcmDicomDirImage* NewImage(void); - 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