X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirStudy.cxx;h=d15c62efa8c92aab7728a43a197614042599417b;hb=edfc14dd195f9759cf02da0959d96d1499d572be;hp=0032f182452be2625a59d48d5067a992846f127a;hpb=ab0aa4fa11e3ac7ec236d1aceb6f0cf89fe83eae;p=gdcm.git diff --git a/src/gdcmDicomDirStudy.cxx b/src/gdcmDicomDirStudy.cxx index 0032f182..d15c62ef 100644 --- a/src/gdcmDicomDirStudy.cxx +++ b/src/gdcmDicomDirStudy.cxx @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirStudy.cxx,v $ Language: C++ - Date: $Date: 2004/09/23 10:47:10 $ - Version: $Revision: 1.11 $ + Date: $Date: 2004/11/25 15:46:11 $ + 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 - 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 @@ -19,38 +19,43 @@ #include "gdcmDicomDirStudy.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" + +namespace gdcm +{ //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \ingroup gdcmDicomDirStudy + * \ingroup DicomDirStudy * \brief constructor * @param s SQ Item holding the elements related to this "STUDY" part - * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it - * to build the gdcmHeaderEntries) + * @param ptagHT pointer to the HTable (DicomDirObject needs it + * to build the HeaderEntries) */ -gdcmDicomDirStudy::gdcmDicomDirStudy(gdcmSQItem *s, TagDocEntryHT *ptagHT): - gdcmDicomDirObject(ptagHT) +DicomDirStudy::DicomDirStudy(SQItem* s, TagDocEntryHT* ptagHT): + DicomDirObject(ptagHT) { - docEntries = s->GetDocEntries(); + DocEntries = s->GetDocEntries(); } /** - * \ingroup gdcmDicomDirStudy + * \ingroup DicomDirStudy * \brief constructor - * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it - * to build the gdcmHeaderEntries) + * @param ptagHT pointer to the HTable (DicomDirObject needs it + * to build the HeaderEntries) */ -gdcmDicomDirStudy::gdcmDicomDirStudy(TagDocEntryHT *ptagHT): - gdcmDicomDirObject(ptagHT) +DicomDirStudy::DicomDirStudy(TagDocEntryHT* ptagHT): + DicomDirObject(ptagHT) { } /** - * \ingroup gdcmDicomDirStudy + * \ingroup DicomDirStudy * \brief Canonical destructor. */ -gdcmDicomDirStudy::~gdcmDicomDirStudy() +DicomDirStudy::~DicomDirStudy() { - for(ListDicomDirSerie::iterator cc = series.begin();cc != series.end();++cc) + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc != Series.end(); + ++cc ) { delete *cc; } @@ -59,17 +64,17 @@ gdcmDicomDirStudy::~gdcmDicomDirStudy() //----------------------------------------------------------------------------- // Print /** - * \ingroup gdcmDicomDirStudy + * \ingroup DicomDirStudy * \brief Prints the Object * @return */ -void gdcmDicomDirStudy::Print(std::ostream &os) +void DicomDirStudy::Print(std::ostream& os) { os << "STUDY" << std::endl; - gdcmDicomDirObject::Print(os); + DicomDirObject::Print(os); - for(ListDicomDirSerie::iterator cc = series.begin(); - cc != series.end(); + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc != Series.end(); ++cc) { (*cc)->SetPrintLevel(PrintLevel); @@ -84,29 +89,31 @@ void gdcmDicomDirStudy::Print(std::ostream &os) * \brief Writes the Object * @return */ -void gdcmDicomDirStudy::Write(FILE *fp, FileType t) +void DicomDirStudy::WriteContent(std::ofstream* fp, FileType t) { - gdcmDicomDirObject::Write(fp, t); + DicomDirObject::WriteContent(fp, t); - for(ListDicomDirSerie::iterator cc = series.begin();cc!=series.end();++cc) + for(ListDicomDirSerie::iterator cc = Series.begin(); + cc!= Series.end(); + ++cc ) { - (*cc)->Write( fp, t ); + (*cc)->WriteContent( fp, t ); } } /** - * \ingroup gdcmDicomStudy + * \ingroup DicomDirStudy * \brief adds a new Serie at the begining of the SerieList * of a partially created DICOMDIR */ -gdcmDicomDirSerie * gdcmDicomDirStudy::NewSerie() +DicomDirSerie* DicomDirStudy::NewSerie() { - std::list elemList = - gdcmGlobal::GetDicomDirElements()->GetDicomDirSerieElements(); + ListDicomDirSerieElem const & elemList = + Global::GetDicomDirElements()->GetDicomDirSerieElements(); - gdcmDicomDirSerie *st = new gdcmDicomDirSerie(PtagHT); + DicomDirSerie* st = new DicomDirSerie(PtagHT); FillObject(elemList); - series.push_front(st); + Series.push_front(st); return st; } @@ -117,3 +124,5 @@ gdcmDicomDirSerie * gdcmDicomDirStudy::NewSerie() // Private //----------------------------------------------------------------------------- +} // end namespace gdcm +