X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.cxx;h=db93cc01be4ca3e76a5d2cfc060a843c26543f6a;hb=d9145e01b1e8f7f5378def524f6ffd5f9491abaf;hp=5b0b3179cea36d1ee4c1b03337f472c03f83be60;hpb=0ad9dae4659b21bfd5c834c1af724eab4dcdf4f6;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.cxx b/src/gdcmDicomDirSerie.cxx index 5b0b3179..db93cc01 100644 --- a/src/gdcmDicomDirSerie.cxx +++ b/src/gdcmDicomDirSerie.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.cxx,v $ Language: C++ - Date: $Date: 2005/01/23 10:12:33 $ - Version: $Revision: 1.33 $ + Date: $Date: 2005/06/24 10:55:58 $ + Version: $Revision: 1.38 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,16 +24,16 @@ namespace gdcm { - //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \brief Constructor + * \brief Constructor + * \note End user must use : DicomDirStudy::NewSerie() */ DicomDirSerie::DicomDirSerie(bool empty): DicomDirObject() { - if( !empty ) + if ( !empty ) { ListDicomDirSerieElem const &elemList = Global::GetDicomDirElements()->GetDicomDirSerieElements(); @@ -46,33 +46,7 @@ DicomDirSerie::DicomDirSerie(bool empty): */ DicomDirSerie::~DicomDirSerie() { - for(ListDicomDirImage::iterator cc = Images.begin(); - cc != Images.end(); - ++cc) - { - delete *cc; - } -} - -//----------------------------------------------------------------------------- -// Print -/** - * \brief Prints the Object - * @param os ostream to write to - * @param indent Indentation string to be prepended during printing - */ -void DicomDirSerie::Print(std::ostream &os, std::string const &) -{ - os << "SERIE" << std::endl; - DicomDirObject::Print(os); - - for(ListDicomDirImage::iterator cc = Images.begin(); - cc != Images.end(); - ++cc) - { - (*cc)->SetPrintLevel(PrintLevel); - (*cc)->Print(os); - } + ClearImage(); } //----------------------------------------------------------------------------- @@ -95,7 +69,8 @@ void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t) } /** - * \brief adds a new Image (with the basic elements) to a partially created DICOMDIR + * \brief adds a new Image (with the basic elements) to a partially created + * DICOMDIR */ DicomDirImage *DicomDirSerie::NewImage() { @@ -104,9 +79,23 @@ DicomDirImage *DicomDirSerie::NewImage() return st; } +/** + * \brief Remove all images in the serie + */ +void DicomDirSerie::ClearImage() +{ + for(ListDicomDirImage::iterator cc = Images.begin(); + cc != Images.end(); + ++cc) + { + delete *cc; + } + Images.clear(); +} + /** * \brief Get the first entry while visiting the DicomDirImage - * \return The first DicomDirImage if found, otherwhise NULL + * \return The first DicomDirImage if DicomDirserie not empty, otherwhise NULL */ DicomDirImage *DicomDirSerie::GetFirstImage() { @@ -124,26 +113,10 @@ DicomDirImage *DicomDirSerie::GetFirstImage() DicomDirImage *DicomDirSerie::GetNextImage() { gdcmAssertMacro (ItImage != Images.end()); - { - ++ItImage; - if (ItImage != Images.end()) - return *ItImage; - } - return NULL; -} - -/** - * \brief Get the first entry while visiting the DicomDirImage - * \return The first DicomDirImage if found, otherwhise NULL - */ -DicomDirImage *DicomDirSerie::GetLastImage() -{ - ItImage = Images.end(); - if (ItImage != Images.begin()) - { - --ItImage; + + ++ItImage; + if (ItImage != Images.end()) return *ItImage; - } return NULL; } @@ -154,6 +127,25 @@ DicomDirImage *DicomDirSerie::GetLastImage() // Private //----------------------------------------------------------------------------- -} // end namespace gdcm +// Print +/** + * \brief Prints the Object + * @param os ostream to write to + * @param indent Indentation string to be prepended during printing + */ +void DicomDirSerie::Print(std::ostream &os, std::string const &) +{ + os << "SERIE" << std::endl; + DicomDirObject::Print(os); + for(ListDicomDirImage::iterator cc = Images.begin(); + cc != Images.end(); + ++cc) + { + (*cc)->SetPrintLevel(PrintLevel); + (*cc)->Print(os); + } +} +//----------------------------------------------------------------------------- +} // end namespace gdcm