]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
BUG: provide a default implementation for GetcurrentThreadID.
[gdcm.git] / src / gdcmDicomDirSerie.h
index 5dbf4005ecb0ca7af06dc961948aa612a8e1d2d8..c87f0037a94ddaeeccb151675abe3bd1af6d0828 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
   Language:  C++
-  Date:      $Date: 2005/01/06 20:03:27 $
-  Version:   $Revision: 1.17 $
+  Date:      $Date: 2005/01/20 16:16:42 $
+  Version:   $Revision: 1.23 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -28,38 +28,35 @@ class DicomDirImage;
 typedef std::list<DicomDirImage *> ListDicomDirImage;
 
 //-----------------------------------------------------------------------------
+/**
+ * \brief   describes a SERIE  within a within a STUDY
+ * (DicomDirStudy) of a given DICOMDIR (DicomDir)
+ */
 class GDCM_EXPORT DicomDirSerie : public DicomDirObject 
 {
 public:
-   DicomDirSerie(); 
+   DicomDirSerie(bool empty=false); 
    ~DicomDirSerie();
 
-   void Print( std::ostream &os = std::cout );
+   void Print( std::ostream &os = std::cout, std::string const & indent = "" );
    void WriteContent( std::ofstream *fp, FileType t );
+   // should avoid exposing internal mechanism
+   DicomDirImage *GetFirstImage();
+   DicomDirImage *GetNextImage();
+   DicomDirImage *GetLastImage();
+        
+   /// adds the passed IMAGE to the IMAGE chained List for this SERIE.    
+   void AddImage(DicomDirImage *obj) { Images.push_back(obj); };
 
-   /**
-    * \ingroup DicomDirSerie
-    * \brief   returns the IMAGE chained List for this SERIE.
-    */
-   ListDicomDirImage const &GetDicomDirImages() const { return Images; };
-
-   /**
-    * \ingroup DicomDirSerie
-    * \brief   adds the passed IMAGE to the IMAGE chained List for this SERIE.
-    */       
-   void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); };
-
-/**
- * \ingroup DicomDirSerie
- * \brief   TODO
- */ 
    DicomDirImage *NewImage();
-    
+
 private:
-/**
-* \brief chained list of DicomDirImages
-*/ 
+
+   ///chained list of DicomDirImages (to be exploited recursively)
    ListDicomDirImage Images;
+   /// iterator on the DicomDirImages of the current DicomDirSerie
+   ListDicomDirImage::iterator ItImage;
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------