]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirSerie.h
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[gdcm.git] / src / gdcmDicomDirSerie.h
index d9df59fd0cf43dad823bad8d9f6e442414970276..8e26cff34a830697fda8d6f514449ee21dd0059f 100644 (file)
@@ -1,41 +1,59 @@
-// gdcmDicomDirSerie.h
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmDicomDirSerie.h,v $
+  Language:  C++
+  Date:      $Date: 2004/10/12 04:35:45 $
+  Version:   $Revision: 1.10 $
+                                                                                
+  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.html for details.
+                                                                                
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+                                                                                
+=========================================================================*/
+
 #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(ListTag::iterator begin,ListTag::iterator end,
-              TagHeaderEntryHT *ptagHT, ListTag *plistEntries); 
-   ~gdcmDicomDirSerie(void);
+   DicomDirSerie(SQItem *s, TagDocEntryHT *ptagHT); 
+   DicomDirSerie(TagDocEntryHT *ptagHT); 
+
+   ~DicomDirSerie();
 
    virtual void Print(std::ostream &os = std::cout);
+   virtual void Write(FILE *fp, FileType t);
 /**
- * \ingroup gdcmDicomDirSerie
+ * \ingroup DicomDirSerie
  * \brief   returns the IMAGE chained List for this SERIE.
  */
-   inline ListDicomDirImage &GetDicomDirImages() 
-      {return images;};
+   ListDicomDirImage &GetDicomDirImages() { return images; };
 /**
- * \ingroup gdcmDicomDirSerie
+ * \ingroup DicomDirSerie
  * \brief   adds the passed IMAGE to the IMAGE chained List for this SERIE.
  */       
-   inline void AddDicomDirImage(gdcmDicomDirImage *obj) 
-      {images.push_back(obj);};
+   void AddDicomDirImage(DicomDirImage *obj) { images.push_back(obj); };
 
 /**
- * \ingroup gdcmDicomDirSerie
+ * \ingroup DicomDirSerie
  * \brief   TODO
  */ 
-   gdcmDicomDirImage* NewImage(void);
+   DicomDirImage* NewImage();
     
 private:
 /**
@@ -43,6 +61,6 @@ private:
 */ 
    ListDicomDirImage images;
 };
-
+} // end namespace gdcm
 //-----------------------------------------------------------------------------
 #endif