X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=abf4d1b2f0fd4b0dc210ab71efcbe481d0b0c94e;hb=4210e3a97df19bf964da287698f8c7997755015a;hp=f6a149a9441bae6430f4df28ad29e610d447270f;hpb=1bae8d2ba47d1b9cc8acfb7b5ab82026e48275dd;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index f6a149a9..abf4d1b2 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2004/11/25 15:46:11 $ - Version: $Revision: 1.19 $ + Date: $Date: 2005/01/18 14:28:32 $ + Version: $Revision: 1.28 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,6 +19,10 @@ #include "gdcmDicomDirPatient.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" +#include "gdcmDicomDirStudy.h" +#include "gdcmSQItem.h" +#include "gdcmDebug.h" + namespace gdcm { @@ -26,22 +30,9 @@ namespace gdcm // Constructor / Destructor /** * \brief Constructor - * @param s SQ Item holding the elements related to this "PATIENT" part - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) */ -DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT) : - DicomDirObject(ptagHT) -{ - DocEntries = s->GetDocEntries(); -} -/** - * \brief Constructor - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) - */ -DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT): - DicomDirObject(ptagHT) +DicomDirPatient::DicomDirPatient(): + DicomDirObject() { } /** @@ -61,9 +52,10 @@ DicomDirPatient::~DicomDirPatient() // Print /** * \brief Prints the Object - * @return + * @param os ostream to write to + * @param indent indent */ -void DicomDirPatient::Print(std::ostream& os) +void DicomDirPatient::Print(std::ostream &os, std::string const & ) { os << "PATIENT" << std::endl; DicomDirObject::Print(os); @@ -79,9 +71,10 @@ void DicomDirPatient::Print(std::ostream& os) /** * \brief Writes the Object - * @return + * @param fp ofstream to write to + * @param t Type of the File (explicit VR, implicitVR, ...) */ -void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t) +void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) { DicomDirObject::WriteContent(fp, t); @@ -101,16 +94,43 @@ void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t) */ DicomDirStudy* DicomDirPatient::NewStudy() { - ListDicomDirStudyElem const & elemList = + ListDicomDirStudyElem const &elemList = Global::GetDicomDirElements()->GetDicomDirStudyElements(); - DicomDirStudy* st = new DicomDirStudy( PtagHT ); + DicomDirStudy *st = new DicomDirStudy(); st->FillObject(elemList); Studies.push_front(st); return st; } +/** + * \brief Get the first entry while visiting the DicomDirStudy + * \return The first DicomDirStudy if found, otherwhise NULL + */ +DicomDirStudy *DicomDirPatient::GetFirstEntry() +{ + ItDicomDirStudy = Studies.begin(); + if (ItDicomDirStudy != Studies.end()) + return *ItDicomDirStudy; + return NULL; +} + +/** + * \brief Get the next entry while visiting the DicomDirStudies + * \note : meaningfull only if GetFirstEntry already called + * \return The next DicomDirStudies if found, otherwhise NULL + */ +DicomDirStudy *DicomDirPatient::GetNextEntry() +{ + gdcmAssertMacro (ItDicomDirStudy != Studies.end()) + { + ++ItDicomDirStudy; + if (ItDicomDirStudy != Studies.end()) + return *ItDicomDirStudy; + } + return NULL; +} //----------------------------------------------------------------------------- // Protected