]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.cxx
ENH: update jpeg lib with ls patch and 2 bugfix patch
[gdcm.git] / src / gdcmDicomDirPatient.cxx
index 50f80ddc32e7ea48a95d675e1c945beeeb74d02f..d6673ac79bab943812ee5fb7949ee94d08142a86 100644 (file)
@@ -1,40 +1,56 @@
-// gdcmDicomDirPatient.cxx
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmDicomDirPatient.cxx,v $
+  Language:  C++
+  Date:      $Date: 2004/10/12 04:35:45 $
+  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.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.
+                                                                                
+=========================================================================*/
+
 #include "gdcmDicomDirPatient.h"
 #include "gdcmDicomDirElement.h"
 #include "gdcmGlobal.h"
+namespace gdcm 
+{
 
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
 /**
- * \ingroup gdcmDicomDirPatient
  * \brief   Constructor
- * @param  begin  iterator (inside the gdcmParser chained list)
- *                on the first Header Entry (i.e Dicom Element)
- *                related to this "PATIENT" part
- * @param  end  iterator  (inside the gdcmParser chained list)
- *              on the last Header Entry (i.e Dicom Element) 
- *              related to this 'PATIENT' part
- * @param ptagHT pointer to the HTable (gdcmObject needs it 
- *               to build the gdcmHeaderEntries)
- * @param plistEntries pointer to the chained List (gdcmObject needs it 
- *               to build the gdcmHeaderEntries)
+ * @param  s SQ Item holding the elements related to this "PATIENT" part
+ * @param ptagHT pointer to the HTable (DicomDirObject needs it 
+ *               to build the HeaderEntries)
  */
-gdcmDicomDirPatient::gdcmDicomDirPatient(ListTag::iterator begin,
-                                         ListTag::iterator end,
-                                         TagHeaderEntryHT *ptagHT, 
-                                         ListTag *plistEntries):
-   gdcmObject(begin,end,ptagHT,plistEntries)
+DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT):
+   DicomDirObject(ptagHT)
+{
+   docEntries = s->GetDocEntries();
+}
+/**
+ * \brief   Constructor
+ * @param ptagHT pointer to the HTable (DicomDirObject needs it 
+ *               to build the HeaderEntries)
+ */
+DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT):
+   DicomDirObject(ptagHT)
 {
 }
-
 /**
- * \ingroup gdcmDicomDirPatient
  * \brief   Canonical destructor.
  */
-gdcmDicomDirPatient::~gdcmDicomDirPatient() 
+DicomDirPatient::~DicomDirPatient() 
 {
-   for(ListDicomDirStudy::iterator cc = studies.begin();cc != studies.end();++cc)
+   for(ListDicomDirStudy::iterator cc = studies.begin();
+                                   cc != studies.end(); ++cc)
    {
       delete *cc;
    }
@@ -43,40 +59,52 @@ gdcmDicomDirPatient::~gdcmDicomDirPatient()
 //-----------------------------------------------------------------------------
 // Print
 /**
- * \ingroup gdcmDicomDirPatient
  * \brief   Prints the Object
  * @return
  */ 
-void gdcmDicomDirPatient::Print(std::ostream &os)
+void DicomDirPatient::Print(std::ostream& os)
 {
-   os<<"PATIENT"<<std::endl;
-   gdcmObject::Print(os);
+   os << "PATIENT" << std::endl;
+   DicomDirObject::Print(os);
 
-   for(ListDicomDirStudy::iterator cc = studies.begin();cc!=studies.end();++cc)
+   for(ListDicomDirStudy::iterator cc = studies.begin();
+                                   cc != studies.end(); ++cc)
    {
-      (*cc)->SetPrintLevel(printLevel);
+      (*cc)->SetPrintLevel(PrintLevel);
       (*cc)->Print(os);
    }
 }
 
+/**
+ * \brief   Writes the Object
+ * @return
+ */ 
+void DicomDirPatient::Write(FILE* fp, FileType t)
+{
+   DicomDirObject::Write(fp, t);
+
+   for(ListDicomDirStudy::iterator cc = studies.begin();cc!=studies.end();++cc)
+   {
+      (*cc)->Write( fp, t );
+   }
+}
 //-----------------------------------------------------------------------------
 // Public
 
 /**
- * \ingroup gdcmDicomDir
  * \brief   adds a new Patient at the begining of the PatientList
  *          of a partially created DICOMDIR
  */
-gdcmDicomDirStudy * gdcmDicomDirPatient::NewStudy(void) {
-   std::list<gdcmElement> elemList;   
-   elemList=gdcmGlobal::GetDicomDirElements()->GetDicomDirStudyElements();
+DicomDirStudy* DicomDirPatient::NewStudy()
+{
+   std::list<Element> elemList = 
+      Global::GetDicomDirElements()->GetDicomDirStudyElements();
       
-   FillObject(elemList);
-   gdcmDicomDirStudy *st = new gdcmDicomDirStudy(i, j, ptagHT, plistEntries);
+   DicomDirStudy* st = new DicomDirStudy( PtagHT );
+   st->FillObject(elemList);
+
    studies.push_front(st);
    return st; 
-
-  
 }   
 
 //-----------------------------------------------------------------------------
@@ -86,3 +114,5 @@ gdcmDicomDirStudy * gdcmDicomDirPatient::NewStudy(void) {
 // Private
 
 //-----------------------------------------------------------------------------
+
+} // end namespace gdcm