comparison Core/DicomParsing/ParsedDicomFile.cpp @ 3651:46cb00e4adbb

DicomMap::DumpMainDicomTags() and DicomMap::ParseMainDicomTags()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Feb 2020 13:22:02 +0100
parents 94f4a18a79cc
children 4922bdd046dd
comparison
equal deleted inserted replaced
3650:e5811a9f8df0 3651:46cb00e4adbb
1005 "Unsupported value for the SpecificCharacterSet (0008,0005) tag: \"" + 1005 "Unsupported value for the SpecificCharacterSet (0008,0005) tag: \"" +
1006 tmp->GetContent() + "\""); 1006 tmp->GetContent() + "\"");
1007 } 1007 }
1008 } 1008 }
1009 1009
1010 for (DicomMap::Map::const_iterator 1010 for (DicomMap::Content::const_iterator
1011 it = source.map_.begin(); it != source.map_.end(); ++it) 1011 it = source.content_.begin(); it != source.content_.end(); ++it)
1012 { 1012 {
1013 if (it->first != DICOM_TAG_SPECIFIC_CHARACTER_SET && 1013 if (it->first != DICOM_TAG_SPECIFIC_CHARACTER_SET &&
1014 !it->second->IsNull()) 1014 !it->second->IsNull())
1015 { 1015 {
1016 try 1016 try