X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=9a26b4fc9ca21da230f0a377ac215131e1c0144b;hb=d5e16925a7d3c8dbd0e71b1989629ca0f619b119;hp=fb5fa9ac3112170af322cc3c359145568f56317e;hpb=ba78e6c6d47d6db1528e8e88e5ebde7296a26692;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index fb5fa9ac..9a26b4fc 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2004/12/03 20:16:57 $ - Version: $Revision: 1.21 $ + Date: $Date: 2005/01/16 04:50:41 $ + Version: $Revision: 1.24 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -29,8 +29,6 @@ namespace gdcm // Constructor / Destructor /** * \brief Constructor - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) */ DicomDirPatient::DicomDirPatient(): DicomDirObject() @@ -53,9 +51,9 @@ DicomDirPatient::~DicomDirPatient() // Print /** * \brief Prints the Object - * @return + * @param os ostream to write to */ -void DicomDirPatient::Print(std::ostream& os) +void DicomDirPatient::Print(std::ostream &os, std::string const & ) { os << "PATIENT" << std::endl; DicomDirObject::Print(os); @@ -71,9 +69,10 @@ void DicomDirPatient::Print(std::ostream& os) /** * \brief Writes the Object - * @return + * @param fp ofstream to write to + * @param t Type of the File (explicit VR, implicitVR, ...) */ -void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t) +void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) { DicomDirObject::WriteContent(fp, t); @@ -93,10 +92,10 @@ void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t) */ DicomDirStudy* DicomDirPatient::NewStudy() { - ListDicomDirStudyElem const & elemList = + ListDicomDirStudyElem const &elemList = Global::GetDicomDirElements()->GetDicomDirStudyElements(); - DicomDirStudy* st = new DicomDirStudy(); + DicomDirStudy *st = new DicomDirStudy(); st->FillObject(elemList); Studies.push_front(st);