]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
* Remove memory leaks on the DicomDir
[gdcm.git] / src / gdcmDicomDirSerie.h
index 6305de8691ed12de74828b48bdde8c9384f02afc..4f4371a30b6d7c203aa52549278bac0e21290f23 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
   Language:  C++
-  Date:      $Date: 2004/08/01 02:39:09 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2004/12/03 17:13:18 $
+  Version:   $Revision: 1.15 $
                                                                                 
   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 "gdcmDicomDirObject.h"
 #include "gdcmDicomDirImage.h"
 
+namespace gdcm 
+{
 //-----------------------------------------------------------------------------
-typedef std::list<gdcmDicomDirImage *> ListDicomDirImage;
+typedef std::list<DicomDirImage *> ListDicomDirImage;
 
 //-----------------------------------------------------------------------------
-class GDCM_EXPORT gdcmDicomDirSerie : public gdcmObject 
+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);
-/**
- * \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