]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.cxx
Some normalizations :
[gdcm.git] / src / gdcmDicomDirSerie.cxx
index 2edbf5ea285b4d57c8636a6d6252de9f3dbb21b1..5b0b3179cea36d1ee4c1b03337f472c03f83be60 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/06 20:03:27 $
-  Version:   $Revision: 1.25 $
+  Date:      $Date: 2005/01/23 10:12:33 $
+  Version:   $Revision: 1.33 $
                                                                                 
   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 "gdcmDicomDirImage.h"
 #include "gdcmGlobal.h"
+#include "gdcmDebug.h"
 
 namespace gdcm 
 {
@@ -29,10 +30,17 @@ namespace gdcm
 /**
  * \brief  Constructor 
  */
-DicomDirSerie::DicomDirSerie():
+DicomDirSerie::DicomDirSerie(bool empty):
    DicomDirObject()
 {
+   if( !empty )
+   {
+      ListDicomDirSerieElem const &elemList = 
+         Global::GetDicomDirElements()->GetDicomDirSerieElements();   
+      FillObject(elemList);
+   }
 }
+
 /**
  * \brief   Canonical destructor.
  */
@@ -51,8 +59,9 @@ DicomDirSerie::~DicomDirSerie()
 /**
  * \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)
+void DicomDirSerie::Print(std::ostream &os, std::string const &)
 {
    os << "SERIE" << std::endl;
    DicomDirObject::Print(os);
@@ -68,7 +77,6 @@ void DicomDirSerie::Print(std::ostream &os)
 
 //-----------------------------------------------------------------------------
 // Public
-
 /**
  * \brief   Writes the Object
  * @param fp ofstream to write to
@@ -91,15 +99,54 @@ void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t)
  */
 DicomDirImage *DicomDirSerie::NewImage()
 {
-   ListDicomDirImageElem const &elemList = 
-      Global::GetDicomDirElements()->GetDicomDirImageElements();
-
    DicomDirImage *st = new DicomDirImage();
-   FillObject(elemList);
-   Images.push_front(st);
-
+   Images.push_back(st);
    return st;   
-} 
+}
+
+/**
+ * \brief   Get the first entry while visiting the DicomDirImage
+ * \return  The first DicomDirImage if found, otherwhise NULL
+ */
+DicomDirImage *DicomDirSerie::GetFirstImage()
+{
+   ItImage = Images.begin();
+   if (ItImage != Images.end())
+      return *ItImage;
+   return NULL;
+}
+
+/**
+ * \brief   Get the next entry while visiting the DicomDirImages
+ * \note : meaningfull only if GetFirstEntry already called
+ * \return  The next DicomDirImages if found, otherwhise NULL
+ */
+DicomDirImage *DicomDirSerie::GetNextImage()
+{
+   gdcmAssertMacro (ItImage != Images.end());
+   {
+      ++ItImage;
+      if (ItImage != Images.end())      
+         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