]> Creatis software - gdcm.git/blob - src/gdcmPatient.cxx
adding testDICICOMDIR.cxx to check DICOMDIR utilities
[gdcm.git] / src / gdcmPatient.cxx
1 // gdcmPatient.cxx
2 //-----------------------------------------------------------------------------
3 #include "gdcmPatient.h"
4
5 gdcmPatient::gdcmPatient() {
6
7 }
8
9
10 gdcmPatient::~gdcmPatient() {
11    lStudy::iterator cc = GetStudies().begin();
12    while  (cc != GetStudies().end() ) {
13       delete *cc;
14       ++cc;
15    }
16 }
17