X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.cxx;h=16e7e4f22c3a3393392f71a91b082dc546ffb6a1;hb=efd3ea11eb9d6da5f3034f5e46649d250b90c75a;hp=3678c9a1b2b266aeca1e18640ae2bc634b4bfc30;hpb=ce8913daafe02955368fd2f07e777e86824467cc;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.cxx b/src/gdcmDicomDirSerie.cxx index 3678c9a1..16e7e4f2 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/25 15:44:23 $ - Version: $Revision: 1.35 $ + Date: $Date: 2005/02/01 10:29:55 $ + Version: $Revision: 1.37 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,11 +24,11 @@ namespace gdcm { - //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \brief Constructor + * \brief Constructor + * \note End user must use : DicomDirStudy::NewSerie() */ DicomDirSerie::DicomDirSerie(bool empty): DicomDirObject() @@ -49,27 +49,6 @@ DicomDirSerie::~DicomDirSerie() ClearImage(); } -//----------------------------------------------------------------------------- -// 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); - } -} - //----------------------------------------------------------------------------- // Public /** @@ -116,7 +95,7 @@ void DicomDirSerie::ClearImage() /** * \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() { @@ -140,21 +119,6 @@ DicomDirImage *DicomDirSerie::GetNextImage() 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 @@ -163,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