X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=8021d859a0f5c3e072247833993a951edd2a03c4;hb=edfc14dd195f9759cf02da0959d96d1499d572be;hp=d9df59fd0cf43dad823bad8d9f6e442414970276;hpb=55d77e0913ff360d639af1841c70d14dc8687584;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index d9df59fd..8021d859 100644 --- a/src/gdcmDicomDirSerie.h +++ b/src/gdcmDicomDirSerie.h @@ -1,48 +1,68 @@ -// gdcmDicomDirSerie.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirSerie.h,v $ + Language: C++ + Date: $Date: 2004/11/25 15:46:11 $ + Version: $Revision: 1.14 $ + + 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 "gdcmDicomDirObject.h" #include "gdcmDicomDirImage.h" +namespace gdcm +{ //----------------------------------------------------------------------------- -typedef std::list ListDicomDirImage; +typedef std::list ListDicomDirImage; //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirSerie : public gdcmObject +class GDCM_EXPORT DicomDirSerie : public DicomDirObject { public: - gdcmDicomDirSerie(ListTag::iterator begin,ListTag::iterator end, - TagHeaderEntryHT *ptagHT, ListTag *plistEntries); - ~gdcmDicomDirSerie(void); + DicomDirSerie( SQItem* s, TagDocEntryHT* ptagHT ); + DicomDirSerie( TagDocEntryHT* ptagHT ); - 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);}; + ~DicomDirSerie(); + + void Print( std::ostream& os = std::cout ); + void WriteContent( std::ofstream* fp, FileType t ); + + /** + * \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 gdcmDicomDirSerie + * \ingroup DicomDirSerie * \brief TODO */ - gdcmDicomDirImage* NewImage(void); + DicomDirImage* NewImage(); private: /** * \brief chained list of DicomDirImages */ - ListDicomDirImage images; + ListDicomDirImage Images; }; - +} // end namespace gdcm //----------------------------------------------------------------------------- #endif