X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirStudy.cxx;h=849cc78cd874182dbd6bb1c7984c40207c07d87c;hb=831b4cec23815614ee2ceddff957e852d7a36fe9;hp=0032f182452be2625a59d48d5067a992846f127a;hpb=ab0aa4fa11e3ac7ec236d1aceb6f0cf89fe83eae;p=gdcm.git diff --git a/src/gdcmDicomDirStudy.cxx b/src/gdcmDicomDirStudy.cxx index 0032f182..849cc78c 100644 --- a/src/gdcmDicomDirStudy.cxx +++ b/src/gdcmDicomDirStudy.cxx @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirStudy.cxx,v $ Language: C++ - Date: $Date: 2004/09/23 10:47:10 $ - Version: $Revision: 1.11 $ + Date: $Date: 2005/01/17 10:59:52 $ + Version: $Revision: 1.24 $ 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.htm for details. + 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 @@ -19,38 +19,28 @@ #include "gdcmDicomDirStudy.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" -//----------------------------------------------------------------------------- -// Constructor / Destructor +#include "gdcmDicomDirSerie.h" -/** - * \ingroup gdcmDicomDirStudy - * \brief constructor - * @param s SQ Item holding the elements related to this "STUDY" part - * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it - * to build the gdcmHeaderEntries) - */ -gdcmDicomDirStudy::gdcmDicomDirStudy(gdcmSQItem *s, TagDocEntryHT *ptagHT): - gdcmDicomDirObject(ptagHT) +namespace gdcm { - docEntries = s->GetDocEntries(); -} +//----------------------------------------------------------------------------- +// Constructor / Destructor /** - * \ingroup gdcmDicomDirStudy - * \brief constructor - * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it - * to build the gdcmHeaderEntries) + * \brief Constructor */ -gdcmDicomDirStudy::gdcmDicomDirStudy(TagDocEntryHT *ptagHT): - gdcmDicomDirObject(ptagHT) +DicomDirStudy::DicomDirStudy(): + DicomDirObject() { } /** - * \ingroup gdcmDicomDirStudy + * \ingroup DicomDirStudy * \brief Canonical destructor. */ -gdcmDicomDirStudy::~gdcmDicomDirStudy() +DicomDirStudy::~DicomDirStudy() { - for(ListDicomDirSerie::iterator cc = series.begin();cc != series.end();++cc) + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc != Series.end(); + ++cc ) { delete *cc; } @@ -59,17 +49,17 @@ gdcmDicomDirStudy::~gdcmDicomDirStudy() //----------------------------------------------------------------------------- // Print /** - * \ingroup gdcmDicomDirStudy * \brief Prints the Object + * @param os ostream to write to * @return */ -void gdcmDicomDirStudy::Print(std::ostream &os) +void DicomDirStudy::Print(std::ostream &os, std::string const & ) { os << "STUDY" << std::endl; - gdcmDicomDirObject::Print(os); + DicomDirObject::Print(os); - for(ListDicomDirSerie::iterator cc = series.begin(); - cc != series.end(); + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc != Series.end(); ++cc) { (*cc)->SetPrintLevel(PrintLevel); @@ -82,34 +72,63 @@ void gdcmDicomDirStudy::Print(std::ostream &os) /** * \brief Writes the Object + * @param fp ofstream to write to + * @param t Type of the File (explicit VR, implicitVR, ...) * @return */ -void gdcmDicomDirStudy::Write(FILE *fp, FileType t) +void DicomDirStudy::WriteContent(std::ofstream *fp, FileType t) { - gdcmDicomDirObject::Write(fp, t); + DicomDirObject::WriteContent(fp, t); - for(ListDicomDirSerie::iterator cc = series.begin();cc!=series.end();++cc) + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc!= Series.end(); + ++cc ) { - (*cc)->Write( fp, t ); + (*cc)->WriteContent( fp, t ); } } /** - * \ingroup gdcmDicomStudy * \brief adds a new Serie at the begining of the SerieList * of a partially created DICOMDIR */ -gdcmDicomDirSerie * gdcmDicomDirStudy::NewSerie() +DicomDirSerie *DicomDirStudy::NewSerie() { - std::list elemList = - gdcmGlobal::GetDicomDirElements()->GetDicomDirSerieElements(); + ListDicomDirSerieElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirSerieElements(); - gdcmDicomDirSerie *st = new gdcmDicomDirSerie(PtagHT); + DicomDirSerie* st = new DicomDirSerie(); FillObject(elemList); - series.push_front(st); + Series.push_front(st); return st; -} +} + +/** + * \brief Initialise the visit of the Series + */ +void DicomDirStudy::InitTraversal() +{ + ItDicomDirSerie = Series.begin(); +} + +/** + * \brief Get the next entry while visiting the DicomDirSeries + * \return The next DicomDirSeries if found, otherwhise NULL + */ +DicomDirSerie *DicomDirStudy::GetNextEntry() +{ + if (ItDicomDirSerie != Series.end()) + { + DicomDirSerie *tmp = *ItDicomDirSerie; + ++ItDicomDirSerie; + return tmp; + } + else + { + return NULL; + } +} //----------------------------------------------------------------------------- // Protected @@ -117,3 +136,5 @@ gdcmDicomDirSerie * gdcmDicomDirStudy::NewSerie() // Private //----------------------------------------------------------------------------- +} // end namespace gdcm +