]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
* Remove useless methods added by JPR for Python users. All was already
[gdcm.git] / src / gdcmDicomDirSerie.h
index 26e61c47b5b3121566b4c2a4d79d03eafc6011d0..81e92bdda88a36b9a09618a9cff2483702337b9e 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/22 03:05:41 $
-  Version:   $Revision: 1.12 $
+  Date:      $Date: 2005/02/04 16:51:36 $
+  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
 #define GDCMDICOMDIRSERIE_H
 
 #include "gdcmDicomDirObject.h"
-#include "gdcmDicomDirImage.h"
+
 namespace gdcm 
 {
-
+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( SQItem* s, TagDocEntryHT* ptagHT ); 
-   DicomDirSerie( TagDocEntryHT* ptagHT ); 
-
+   DicomDirSerie(bool empty=false); 
    ~DicomDirSerie();
 
-   virtual void Print( std::ostream& os = std::cout );
-   virtual void Write( std::ofstream* fp, FileType t );
-/**
- * \ingroup DicomDirSerie
- * \brief   returns the IMAGE chained List for this SERIE.
- */
-   ListDicomDirImage& GetDicomDirImages() { 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); };
+   void Print( std::ostream &os = std::cout, std::string const &indent = "" );
+   void WriteContent( std::ofstream *fp, FileType t );
+
+   // Image methods
+   DicomDirImage *NewImage();
+   /// Add a new gdcm::DicomDirImage to the Serie
+   void AddImage(DicomDirImage *obj) { Images.push_back(obj); };
+   void ClearImage();
+
+   DicomDirImage *GetFirstImage();
+   DicomDirImage *GetNextImage();
 
-/**
- * \ingroup DicomDirSerie
- * \brief   TODO
- */ 
-   DicomDirImage* NewImage();
-    
 private:
-/**
-* \brief chained list of DicomDirImages
-*/ 
-   ListDicomDirImage images;
+
+   ///chained list of DicomDirImages (to be exploited recursively)
+   ListDicomDirImage Images;
+   /// iterator on the DicomDirImages of the current DicomDirSerie
+   ListDicomDirImage::iterator ItImage;
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------