]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
2005-01-13 Jean-Pierre Roux <jpr@creatis.univ-lyon1.fr>
[gdcm.git] / src / gdcmDicomDirSerie.h
index 8e73240d57d54cc019e3cb6dcc98e60d2f09a9c1..4f2f0749c7e829610bf46792ed5befb6b1cf9a62 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/13 14:15:29 $
-  Version:   $Revision: 1.11 $
+  Date:      $Date: 2005/01/11 15:15:38 $
+  Version:   $Revision: 1.18 $
                                                                                 
   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;
 
 //-----------------------------------------------------------------------------
+/**
+ * \ingroup DicomDirSerie
+ * \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(); 
    ~DicomDirSerie();
 
-   virtual void Print( std::ostream& os = std::cout );
-   virtual void Write( FILE* 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 );
+   void WriteContent( std::ofstream *fp, FileType t );
+
+   /**
+    * \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
  */ 
-   DicomDirImageNewImage();
+   DicomDirImage *NewImage();
     
 private:
 /**
 * \brief chained list of DicomDirImages
 */ 
-   ListDicomDirImage images;
+   ListDicomDirImage Images;
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------