]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirStudy.cxx
* Test/ : rename VTK tests to have a best name for the tests
[gdcm.git] / src / gdcmDicomDirStudy.cxx
index e817e7340c52133fbc21ea62658018bf9edbb626..92630664ab69bbbccbea9ec1f4dcf4e2ff6db468 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirStudy.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/06 20:03:27 $
-  Version:   $Revision: 1.22 $
+  Date:      $Date: 2005/01/18 14:28:32 $
+  Version:   $Revision: 1.27 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -20,6 +20,7 @@
 #include "gdcmDicomDirElement.h"
 #include "gdcmGlobal.h"
 #include "gdcmDicomDirSerie.h"
+#include "gdcmDebug.h"
 
 namespace gdcm 
 {
@@ -33,7 +34,6 @@ DicomDirStudy::DicomDirStudy():
 {
 }
 /**
- * \ingroup DicomDirStudy
  * \brief   Canonical destructor.
  */
 DicomDirStudy::~DicomDirStudy() 
@@ -51,9 +51,10 @@ DicomDirStudy::~DicomDirStudy()
 /**
  * \brief   Prints the Object
  * @param os ostream to write to 
+ * @param   indent indent
  * @return
  */ 
-void DicomDirStudy::Print(std::ostream &os)
+void DicomDirStudy::Print(std::ostream &os, std::string const & )
 {
    os << "STUDY" << std::endl;
    DicomDirObject::Print(os);
@@ -102,7 +103,35 @@ DicomDirSerie *DicomDirStudy::NewSerie()
    Series.push_front(st);
 
    return st;  
-}   
+} 
+
+ /**
+ * \brief   Get the first entry while visiting the DicomDirSeries
+ * \return  The first DicomDirSerie if found, otherwhise NULL
+ */
+DicomDirSerie *DicomDirStudy::GetFirstEntry()
+{
+   ItDicomDirSerie = Series.begin();
+   if (ItDicomDirSerie != Series.end())
+      return *ItDicomDirSerie;
+   return NULL;
+}
+
+/**
+ * \brief   Get the next entry while visiting the DicomDirSeries
+ * \note : meaningfull only if GetFirstEntry already called
+ * \return  The next DicomDirSerie if found, otherwhise NULL
+ */
+DicomDirSerie *DicomDirStudy::GetNextEntry()
+{
+   gdcmAssertMacro (ItDicomDirSerie != Series.end());
+   {
+      ++ItDicomDirSerie;
+      if (ItDicomDirSerie != Series.end())
+         return *ItDicomDirSerie;
+   }
+   return NULL;
+}  
 //-----------------------------------------------------------------------------
 // Protected