comparison OrthancFramework/Sources/DicomNetworking/DicomControlUserConnection.cpp @ 4313:91554aecff9a

removed a friend method for better abi
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Nov 2020 16:09:05 +0100
parents 5b254bd435d3
children d9473bd5ed43
comparison
equal deleted inserted replaced
4312:6d49e3b6ff77 4313:91554aecff9a
165 for (size_t i = 0; i < query.GetSize(); i++) 165 for (size_t i = 0; i < query.GetSize(); i++)
166 { 166 {
167 const DicomTag& tag = query.GetElement(i).GetTag(); 167 const DicomTag& tag = query.GetElement(i).GetTag();
168 if (allowedTags.find(tag) == allowedTags.end()) 168 if (allowedTags.find(tag) == allowedTags.end())
169 { 169 {
170 CLOG(WARNING, DICOM) << "Tag not allowed for this C-Find level, will be ignored: " << tag; 170 CLOG(WARNING, DICOM) << "Tag not allowed for this C-Find level, will be ignored: ("
171 << tag.Format() << ")";
171 } 172 }
172 else 173 else
173 { 174 {
174 fixedQuery.SetValue(tag, query.GetElement(i).GetValue()); 175 fixedQuery.SetValue(tag, query.GetElement(i).GetValue());
175 } 176 }