X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirElement.cxx;h=d0bc124b95ebd851c98fc5ea881b1f2ffd72de0a;hb=db42e5541964319d882c965dc6d0284806ff0489;hp=4af127cd3b5e8b0bc251c6c7adaa22b7c4481c31;hpb=bd1e1aea88a95e4d14cd59088a7e5280703402ea;p=gdcm.git diff --git a/src/gdcmDicomDirElement.cxx b/src/gdcmDicomDirElement.cxx index 4af127cd..d0bc124b 100644 --- a/src/gdcmDicomDirElement.cxx +++ b/src/gdcmDicomDirElement.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirElement.cxx,v $ Language: C++ - Date: $Date: 2005/10/19 12:01:50 $ - Version: $Revision: 1.40 $ + Date: $Date: 2005/11/04 15:29:59 $ + Version: $Revision: 1.42 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -60,20 +60,21 @@ DicomDirElement::DicomDirElement() from.getline(buff, 1024, ' '); strType = buff; - if ( strType == "metaElem" ) - type = DD_META; - else if ( strType == "patientElem" ) - type = DD_PATIENT; - else if ( strType == "studyElem" ) - type = DD_STUDY; + if ( strType == "imageElem" ) + type = DD_IMAGE; else if ( strType == "serieElem" ) type = DD_SERIE; - else if ( strType == "imageElem" ) - type = DD_IMAGE; + else if ( strType == "studyElem" ) + type = DD_STUDY; + else if ( strType == "patientElem" ) + type = DD_PATIENT; + else if ( strType == "metaElem" ) + type = DD_META; else { - gdcmWarningMacro("Unknown type found in the file : " - <::iterator it;