]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.cxx
ENH: Be more verbose on Win32
[gdcm.git] / src / gdcmDicomDirPatient.cxx
index 93a459cad3dab6104ed0ef41a01ff2753b3759b8..e3235ec8e4aa45933c421e3af20c68d8b61c2cb2 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirPatient.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/12/03 17:13:18 $
-  Version:   $Revision: 1.20 $
+  Date:      $Date: 2005/01/17 10:59:52 $
+  Version:   $Revision: 1.25 $
                                                                                 
   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,9 @@
 #include "gdcmDicomDirPatient.h"
 #include "gdcmDicomDirElement.h"
 #include "gdcmGlobal.h"
+#include "gdcmDicomDirStudy.h"
+#include "gdcmSQItem.h"
+
 namespace gdcm 
 {
 
@@ -26,8 +29,6 @@ namespace gdcm
 // Constructor / Destructor
 /**
  * \brief   Constructor
- * @param ptagHT pointer to the HTable (DicomDirObject needs it 
- *               to build the HeaderEntries)
  */
 DicomDirPatient::DicomDirPatient():
    DicomDirObject()
@@ -50,9 +51,9 @@ DicomDirPatient::~DicomDirPatient()
 // Print
 /**
  * \brief   Prints the Object
- * @return
+ * @param os ostream to write to 
  */ 
-void DicomDirPatient::Print(std::ostream& os)
+void DicomDirPatient::Print(std::ostream &os, std::string const & )
 {
    os << "PATIENT" << std::endl;
    DicomDirObject::Print(os);
@@ -68,9 +69,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::ofstreamfp, FileType t)
+void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t)
 {
    DicomDirObject::WriteContent(fp, t);
 
@@ -90,16 +92,41 @@ void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t)
  */
 DicomDirStudy* DicomDirPatient::NewStudy()
 {
-   ListDicomDirStudyElem const & elemList = 
+   ListDicomDirStudyElem const &elemList = 
       Global::GetDicomDirElements()->GetDicomDirStudyElements();
       
-   DicomDirStudyst = new DicomDirStudy();
+   DicomDirStudy *st = new DicomDirStudy();
    st->FillObject(elemList);
 
    Studies.push_front(st);
    return st; 
 }   
 
+/**
+ * \brief   Initialise the visit of the DicomDirPatients
+ */
+void DicomDirPatient::InitTraversal()
+{
+   ItDicomDirStudy = Studies.begin();
+}
+
+/**
+ * \brief   Get the next entry while visiting the DicomDirStudies
+ * \return  The next DicomDirStudies if found, otherwhise NULL
+ */
+DicomDirStudy *DicomDirPatient::GetNextEntry()
+{
+   if (ItDicomDirStudy != Studies.end())
+   {
+      DicomDirStudy *tmp = *ItDicomDirStudy;
+      ++ItDicomDirStudy;
+      return tmp;
+   }
+   else
+   {
+      return NULL;
+   }
+}
 //-----------------------------------------------------------------------------
 // Protected