X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmElementSet.cxx;h=95cea960349661b6f3252676549d6f7dd256e0cd;hb=5f059c9a5febdd08bc360421311319fd9a806b75;hp=fbf2d31df599347bb20110f02e05e126298ac689;hpb=b1520ca5b7b3665aa40c14b63169bfab92eece55;p=gdcm.git diff --git a/src/gdcmElementSet.cxx b/src/gdcmElementSet.cxx index fbf2d31d..95cea960 100644 --- a/src/gdcmElementSet.cxx +++ b/src/gdcmElementSet.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.cxx,v $ Language: C++ - Date: $Date: 2004/06/22 13:47:33 $ - Version: $Revision: 1.9 $ + Date: $Date: 2004/06/22 14:37:04 $ + Version: $Revision: 1.11 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -81,26 +81,26 @@ void gdcmElementSet::Write(FILE *fp, FileType filetype) { gdcmDocEntry *e; for (TagDocEntryHT::iterator i = tagHT.begin(); i != tagHT.end(); ++i) { - e=i->second; - e->WriteCommonPart(fp, filetype); - std::cout<GetKey() << " " << hex << e->GetVR() << " " - << e->GetName() - << std::endl; - -// e->Write(fp,filetype); // This will be the right way to proceed ! - + e=i->second; + e->WriteCommonPart(fp, filetype); + std::cout<GetKey() << " " << std::hex << e->GetVR() << " " + << e->GetName() + << std::endl; + +// e->Write(fp,filetype); // This will be the right way to proceed ! + if (gdcmBinEntry* BinEntry = dynamic_cast< gdcmBinEntry* >(e) ) { BinEntry->Write(fp,filetype); - continue; + continue; } - if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(e) ) { - ValEntry->Write(fp,filetype); - continue; + if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(e) ) { + ValEntry->Write(fp); + continue; } if (gdcmSeqEntry* SeqEntry = dynamic_cast< gdcmSeqEntry* >(e) ) { SeqEntry->Write(fp,filetype); - continue; + continue; } } }