]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.cxx
* src/gdcmDocument.cxx : fix bug... test if the fp is opened to use it
[gdcm.git] / src / gdcmDicomDirPatient.cxx
index d6673ac79bab943812ee5fb7949ee94d08142a86..66f58f0529f115ea7ddedb41468332b808183a28 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirPatient.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/10/12 04:35:45 $
-  Version:   $Revision: 1.15 $
+  Date:      $Date: 2004/10/25 04:08:20 $
+  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
@@ -30,10 +30,10 @@ namespace gdcm
  * @param ptagHT pointer to the HTable (DicomDirObject needs it 
  *               to build the HeaderEntries)
  */
-DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT):
+DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT) :
    DicomDirObject(ptagHT)
 {
-   docEntries = s->GetDocEntries();
+   DocEntries = s->GetDocEntries();
 }
 /**
  * \brief   Constructor
@@ -49,8 +49,9 @@ DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT):
  */
 DicomDirPatient::~DicomDirPatient() 
 {
-   for(ListDicomDirStudy::iterator cc = studies.begin();
-                                   cc != studies.end(); ++cc)
+   for(ListDicomDirStudy::const_iterator cc = Studies.begin();
+                                         cc != Studies.end(); 
+                                       ++cc )
    {
       delete *cc;
    }
@@ -67,8 +68,9 @@ void DicomDirPatient::Print(std::ostream& os)
    os << "PATIENT" << std::endl;
    DicomDirObject::Print(os);
 
-   for(ListDicomDirStudy::iterator cc = studies.begin();
-                                   cc != studies.end(); ++cc)
+   for(ListDicomDirStudy::const_iterator cc = Studies.begin();
+                                         cc != Studies.end(); 
+                                       ++cc )
    {
       (*cc)->SetPrintLevel(PrintLevel);
       (*cc)->Print(os);
@@ -79,11 +81,13 @@ void DicomDirPatient::Print(std::ostream& os)
  * \brief   Writes the Object
  * @return
  */ 
-void DicomDirPatient::Write(FILE* fp, FileType t)
+void DicomDirPatient::Write(std::ofstream* fp, FileType t)
 {
    DicomDirObject::Write(fp, t);
 
-   for(ListDicomDirStudy::iterator cc = studies.begin();cc!=studies.end();++cc)
+   for(ListDicomDirStudy::iterator cc = Studies.begin();
+                                   cc!= Studies.end();
+                                 ++cc )
    {
       (*cc)->Write( fp, t );
    }
@@ -97,13 +101,13 @@ void DicomDirPatient::Write(FILE* fp, FileType t)
  */
 DicomDirStudy* DicomDirPatient::NewStudy()
 {
-   std::list<Element> elemList = 
+   ListDicomDirStudyElem const & elemList = 
       Global::GetDicomDirElements()->GetDicomDirStudyElements();
       
    DicomDirStudy* st = new DicomDirStudy( PtagHT );
    st->FillObject(elemList);
 
-   studies.push_front(st);
+   Studies.push_front(st);
    return st; 
 }