]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
* No comments...
[gdcm.git] / src / gdcmDicomDirSerie.h
index ae419146850584f0423711beea49e674ccb5c4b3..21a68c55e762eb1e6d0bbb0ef306994d84dbe415 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
   Language:  C++
-  Date:      $Date: 2004/08/26 15:29:52 $
-  Version:   $Revision: 1.7 $
+  Date:      $Date: 2005/01/28 17:01:29 $
+  Version:   $Revision: 1.25 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
-  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
                                                                                 
      This software is distributed WITHOUT ANY WARRANTY; without even
      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 #ifndef GDCMDICOMDIRSERIE_H
 #define GDCMDICOMDIRSERIE_H
 
-#include "gdcmObject.h"
-#include "gdcmDicomDirImage.h"
+#include "gdcmDicomDirObject.h"
 
+namespace gdcm 
+{
+class DicomDirImage;
 //-----------------------------------------------------------------------------
-typedef std::list<gdcmDicomDirImage *> ListDicomDirImage;
+typedef std::list<DicomDirImage *> ListDicomDirImage;
 
 //-----------------------------------------------------------------------------
-class GDCM_EXPORT gdcmDicomDirSerie : public gdcmObject 
-{
-public:
-   gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT); 
-   gdcmDicomDirSerie(TagDocEntryHT *ptagHT); 
-
-   ~gdcmDicomDirSerie();
-
-   virtual void Print(std::ostream &os = std::cout);
-   virtual void Write(FILE *fp, FileType t);
 /**
- * \ingroup gdcmDicomDirSerie
- * \brief   returns the IMAGE chained List for this SERIE.
+ * \brief   describes a SERIE  within a within a STUDY
+ * (DicomDirStudy) of a given DICOMDIR (DicomDir)
  */
-   ListDicomDirImage &GetDicomDirImages() { return images; };
-/**
- * \ingroup gdcmDicomDirSerie
- * \brief   adds the passed IMAGE to the IMAGE chained List for this SERIE.
- */       
-   void AddDicomDirImage(gdcmDicomDirImage *obj) { images.push_back(obj); };
+class GDCM_EXPORT DicomDirSerie : public DicomDirObject 
+{
+public:
+   DicomDirSerie(bool empty=false); 
+   ~DicomDirSerie();
+
+   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();
+        
+   /// adds the passed IMAGE to the IMAGE chained List for this SERIE.    
+   void AddImage(DicomDirImage *obj) { Images.push_back(obj); };
+   DicomDirImage *NewImage();
+
+   void ClearImage();
 
-/**
- * \ingroup gdcmDicomDirSerie
- * \brief   TODO
- */ 
-   gdcmDicomDirImage* 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
 //-----------------------------------------------------------------------------
 #endif