X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=4f2f0749c7e829610bf46792ed5befb6b1cf9a62;hb=3eff461b8ad6c34c5d4a9fa6b4ce1eca87daf550;hp=9554d39a5c342e75e6c125e8a6e9b922031498a3;hpb=22f785a2627d1e7823701193bd7624739a3e033b;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index 9554d39a..4f2f0749 100644 --- a/src/gdcmDicomDirSerie.h +++ b/src/gdcmDicomDirSerie.h @@ -1,29 +1,71 @@ -// gdcmDicomDirSerie.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirSerie.h,v $ + Language: C++ + Date: $Date: 2005/01/11 15:15:38 $ + Version: $Revision: 1.18 $ + + 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 +/** + * \ingroup DicomDirSerie + * \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); - ~gdcmDicomDirSerie(void); + DicomDirSerie(); + ~DicomDirSerie(); - virtual void Print(std::ostream &os = std::cout); + void Print( std::ostream &os = std::cout ); + void WriteContent( std::ofstream *fp, FileType t ); - inline ListDicomDirImage &GetDicomDirImages() {return images;}; - inline void AddDicomDirImage(gdcmDicomDirImage *obj) {images.push_back(obj);}; + /** + * \ingroup DicomDirSerie + * \brief returns the IMAGE chained List for this SERIE. + */ + ListDicomDirImage const &GetDicomDirImages() const { return Images; }; + /** + * \ingroup DicomDirSerie + * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. + */ + void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); }; + +/** + * \ingroup DicomDirSerie + * \brief TODO + */ + DicomDirImage *NewImage(); + private: - ListDicomDirImage images; +/** +* \brief chained list of DicomDirImages +*/ + ListDicomDirImage Images; }; - +} // end namespace gdcm //----------------------------------------------------------------------------- #endif