comparison OrthancServer/Search/LookupIdentifierQuery.cpp @ 2115:a657f7772e69

Handling of private tags/creators in the "Dictionary" configuration option
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 31 Oct 2016 15:23:32 +0100
parents b1291df2f780
children 7e8889bc95c6
comparison
equal deleted inserted replaced
2114:e4f8e377782f 2115:a657f7772e69
262 s << "OR "; 262 s << "OR ";
263 263
264 for (size_t j = 0; j < (*it)->GetSize(); j++) 264 for (size_t j = 0; j < (*it)->GetSize(); j++)
265 { 265 {
266 const Constraint& c = (*it)->GetConstraint(j); 266 const Constraint& c = (*it)->GetConstraint(j);
267 s << FromDcmtkBridge::GetName(c.GetTag()); 267 s << FromDcmtkBridge::GetTagName(c.GetTag(), "");
268 268
269 switch (c.GetType()) 269 switch (c.GetType())
270 { 270 {
271 case IdentifierConstraintType_Equal: s << " == "; break; 271 case IdentifierConstraintType_Equal: s << " == "; break;
272 case IdentifierConstraintType_SmallerOrEqual: s << " <= "; break; 272 case IdentifierConstraintType_SmallerOrEqual: s << " <= "; break;