]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.h
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[gdcm.git] / src / gdcmDicomDirPatient.h
index 742e37407e0513d95d4681a816b5a2b4847fc363..d203a6294865b8d01203055986777da7e5dcb7c4 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirPatient.h,v $
   Language:  C++
-  Date:      $Date: 2004/09/23 10:47:10 $
-  Version:   $Revision: 1.8 $
+  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.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
 #include "gdcmDicomDirObject.h"
 #include "gdcmDicomDirStudy.h"
 #include "gdcmSQItem.h"
+
+namespace gdcm 
+{
+
 //-----------------------------------------------------------------------------
-typedef std::list<gdcmDicomDirStudy*> ListDicomDirStudy;
+typedef std::list<DicomDirStudy*> ListDicomDirStudy;
 
 //-----------------------------------------------------------------------------
-class GDCM_EXPORT gdcmDicomDirPatient : public gdcmDicomDirObject 
+class GDCM_EXPORT DicomDirPatient : public DicomDirObject 
 {
 public:
-   gdcmDicomDirPatient(gdcmSQItem *s, TagDocEntryHT *ptagHT); 
-   gdcmDicomDirPatient(TagDocEntryHT *ptagHT); 
+   DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT); 
+   DicomDirPatient(TagDocEntryHT *ptagHT); 
 
-   ~gdcmDicomDirPatient();
+   ~DicomDirPatient();
 
    virtual void Print(std::ostream &os = std::cout);
    virtual void Write(FILE *fp, FileType t);
@@ -40,16 +44,17 @@ public:
    ListDicomDirStudy &GetDicomDirStudies() { return studies; };
 
    /// adds the passed STUDY to the STUDY chained List for this PATIENT.
-   void AddDicomDirStudy(gdcmDicomDirStudy *obj) { studies.push_back(obj); };
+   void AddDicomDirStudy(DicomDirStudy *obj) { studies.push_back(obj); };
 
    ///  TODO
-   gdcmDicomDirStudy* NewStudy(); 
+   DicomDirStudy* NewStudy(); 
          
 private:
 
    /// chained list of DicomDirStudy
    ListDicomDirStudy studies;
 };
+} // end namespace gdcm
 
 //-----------------------------------------------------------------------------
 #endif