X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.cxx;h=5b0b3179cea36d1ee4c1b03337f472c03f83be60;hb=0ad9dae4659b21bfd5c834c1af724eab4dcdf4f6;hp=2809fdea1dcf964d1847c7151977e85e9e77e19c;hpb=963480c814326423065a4a02fa1bf8bc1243ae4f;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.cxx b/src/gdcmDicomDirSerie.cxx index 2809fdea..5b0b3179 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/18 11:39:59 $ - Version: $Revision: 1.29 $ + Date: $Date: 2005/01/23 10:12:33 $ + Version: $Revision: 1.33 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -30,10 +30,17 @@ namespace gdcm /** * \brief Constructor */ -DicomDirSerie::DicomDirSerie(): +DicomDirSerie::DicomDirSerie(bool empty): DicomDirObject() { + if( !empty ) + { + ListDicomDirSerieElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirSerieElements(); + FillObject(elemList); + } } + /** * \brief Canonical destructor. */ @@ -52,6 +59,7 @@ DicomDirSerie::~DicomDirSerie() /** * \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 &) { @@ -69,7 +77,6 @@ void DicomDirSerie::Print(std::ostream &os, std::string const &) //----------------------------------------------------------------------------- // Public - /** * \brief Writes the Object * @param fp ofstream to write to @@ -92,13 +99,8 @@ void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t) */ DicomDirImage *DicomDirSerie::NewImage() { - ListDicomDirImageElem const &elemList = - Global::GetDicomDirElements()->GetDicomDirImageElements(); - DicomDirImage *st = new DicomDirImage(); - FillObject(elemList); - Images.push_front(st); - + Images.push_back(st); return st; } @@ -106,11 +108,11 @@ DicomDirImage *DicomDirSerie::NewImage() * \brief Get the first entry while visiting the DicomDirImage * \return The first DicomDirImage if found, otherwhise NULL */ -DicomDirImage *DicomDirSerie::GetFirstEntry() +DicomDirImage *DicomDirSerie::GetFirstImage() { - ItDicomDirImage = Images.begin(); - if (ItDicomDirImage != Images.end()) - return *ItDicomDirImage; + ItImage = Images.begin(); + if (ItImage != Images.end()) + return *ItImage; return NULL; } @@ -119,17 +121,32 @@ DicomDirImage *DicomDirSerie::GetFirstEntry() * \note : meaningfull only if GetFirstEntry already called * \return The next DicomDirImages if found, otherwhise NULL */ -DicomDirImage *DicomDirSerie::GetNextEntry() +DicomDirImage *DicomDirSerie::GetNextImage() { - gdcmAssertMacro (ItDicomDirImage != Images.end()); + gdcmAssertMacro (ItImage != Images.end()); { - ++ItDicomDirImage; - if (ItDicomDirImage != Images.end()) - return *ItDicomDirImage; + ++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; + return *ItImage; + } + return NULL; +} + //----------------------------------------------------------------------------- // Protected