]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
BUG: There was some duplicated code I didnt see. This fix D.Clunie problem I was...
[gdcm.git] / src / gdcmDicomDirSerie.h
index 308045a87533a68f42a40b5f5b803506ab95b392..4f2f0749c7e829610bf46792ed5befb6b1cf9a62 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
   Language:  C++
-  Date:      $Date: 2004/09/27 08:39:06 $
-  Version:   $Revision: 1.9 $
+  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<gdcmDicomDirImage *> ListDicomDirImage;
+typedef std::list<DicomDirImage *> ListDicomDirImage;
 
 //-----------------------------------------------------------------------------
-class GDCM_EXPORT gdcmDicomDirSerie : public gdcmDicomDirObject 
+/**
+ * \ingroup DicomDirSerie
+ * \brief   describes a SERIE  within a within a STUDY
+ * (DicomDirStudy) of a given DICOMDIR (DicomDir)
+ */
+class GDCM_EXPORT DicomDirSerie : public DicomDirObject 
 {
 public:
-   gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT); 
-   gdcmDicomDirSerie(TagDocEntryHT *ptagHT); 
+   DicomDirSerie(); 
+   ~DicomDirSerie();
 
-   ~gdcmDicomDirSerie();
+   void Print( std::ostream &os = std::cout );
+   void WriteContent( std::ofstream *fp, FileType t );
 
-   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.
- */
-   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); };
+   /**
+    * \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 gdcmDicomDirSerie
+ * \ingroup DicomDirSerie
  * \brief   TODO
  */ 
-   gdcmDicomDirImage* NewImage();
+   DicomDirImage *NewImage();
     
 private:
 /**
 * \brief chained list of DicomDirImages
 */ 
-   ListDicomDirImage images;
+   ListDicomDirImage Images;
 };
-
+} // end namespace gdcm
 //-----------------------------------------------------------------------------
 #endif