]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.cxx
Some normalizations :
[gdcm.git] / src / gdcmDicomDirSerie.cxx
index 24529ce3ea45f891cd54726ed2092e6dde4d8fbd..5b0b3179cea36d1ee4c1b03337f472c03f83be60 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/17 10:59:52 $
-  Version:   $Revision: 1.27 $
+  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,6 +59,7 @@ 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, std::string const &)
 {
@@ -68,7 +77,6 @@ void DicomDirSerie::Print(std::ostream &os, std::string const &)
 
 //-----------------------------------------------------------------------------
 // Public
-
 /**
  * \brief   Writes the Object
  * @param fp ofstream to write to
@@ -91,42 +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   Initialise the visit of the Images
+ * \brief   Get the first entry while visiting the DicomDirImage
+ * \return  The first DicomDirImage if found, otherwhise NULL
  */
-void DicomDirSerie::InitTraversal()
+DicomDirImage *DicomDirSerie::GetFirstImage()
 {
-   ItDicomDirImage = Images.begin();
+   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::GetNextEntry()
+DicomDirImage *DicomDirSerie::GetNextImage()
 {
-   if (ItDicomDirImage != Images.end())
+   gdcmAssertMacro (ItImage != Images.end());
    {
-      DicomDirImage *tmp = *ItDicomDirImage;
-      ++ItDicomDirImage;
-      return tmp;
+      ++ItImage;
+      if (ItImage != Images.end())      
+         return *ItImage;
    }
-   else
+   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())
    {
-      return NULL;
+      --ItImage;
+      return *ItImage;
    }
+   return NULL;
 }
+
 //-----------------------------------------------------------------------------
 // Protected