comparison Core/DicomNetworking/DicomFindAnswers.cpp @ 4007:884b55ce01f6

Private tags returned by C-FIND SCP
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 06 Jun 2020 14:50:21 +0200
parents 2a170a8f1faf
children cc6ed76bba27
comparison
equal deleted inserted replaced
4006:55710d73780f 4007:884b55ce01f6
120 void DicomFindAnswers::Add(const DicomMap& map) 120 void DicomFindAnswers::Add(const DicomMap& map)
121 { 121 {
122 // We use the permissive mode to be tolerant wrt. invalid DICOM 122 // We use the permissive mode to be tolerant wrt. invalid DICOM
123 // files that contain some tags with out-of-range values (such 123 // files that contain some tags with out-of-range values (such
124 // tags are removed from the answers) 124 // tags are removed from the answers)
125 AddAnswerInternal(new ParsedDicomFile(map, encoding_, true /* permissive */)); 125 AddAnswerInternal(new ParsedDicomFile(map, encoding_, true /* permissive */,
126 "" /* no private creator */));
126 } 127 }
127 128
128 129
129 void DicomFindAnswers::Add(ParsedDicomFile& dicom) 130 void DicomFindAnswers::Add(ParsedDicomFile& dicom)
130 { 131 {