X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirSerie.cxx;h=2edbf5ea285b4d57c8636a6d6252de9f3dbb21b1;hb=03acf3c119c6657129b8aeae8cb2205e481a105b;hp=5055d4b6854b91637ec1c297f1f5dec81f1e178e;hpb=74e3bc05fade5a18f193e7d1122c74756c0e689e;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.cxx b/src/gdcmDicomDirSerie.cxx index 5055d4b6..2edbf5ea 100644 --- a/src/gdcmDicomDirSerie.cxx +++ b/src/gdcmDicomDirSerie.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.cxx,v $ Language: C++ - Date: $Date: 2005/01/06 16:05:06 $ - Version: $Revision: 1.24 $ + Date: $Date: 2005/01/06 20:03:27 $ + Version: $Revision: 1.25 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -52,7 +52,7 @@ DicomDirSerie::~DicomDirSerie() * \brief Prints the Object * @param os ostream to write to */ -void DicomDirSerie::Print(std::ostream& os) +void DicomDirSerie::Print(std::ostream &os) { os << "SERIE" << std::endl; DicomDirObject::Print(os); @@ -74,7 +74,7 @@ void DicomDirSerie::Print(std::ostream& os) * @param fp ofstream to write to * @param t Type of the File (explicit VR, implicitVR, ...) */ -void DicomDirSerie::WriteContent(std::ofstream* fp, FileType t) +void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t) { DicomDirObject::WriteContent(fp, t); @@ -89,12 +89,12 @@ void DicomDirSerie::WriteContent(std::ofstream* fp, FileType t) /** * \brief adds a new Image (with the basic elements) to a partially created DICOMDIR */ -DicomDirImage* DicomDirSerie::NewImage() +DicomDirImage *DicomDirSerie::NewImage() { - ListDicomDirImageElem const & elemList = + ListDicomDirImageElem const &elemList = Global::GetDicomDirElements()->GetDicomDirImageElements(); - DicomDirImage* st = new DicomDirImage(); + DicomDirImage *st = new DicomDirImage(); FillObject(elemList); Images.push_front(st);