comparison Plugins/Engine/OrthancPlugins.cpp @ 2006:6301bbcbcaed

more generic support of value representations
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 09 Jun 2016 14:48:40 +0200
parents 39329372b667
children 655489d9165d
comparison
equal deleted inserted replaced
2005:9e021b2b348b 2006:6301bbcbcaed
2124 } 2124 }
2125 else 2125 else
2126 { 2126 {
2127 p.target->group = entry->getKey().getGroup(); 2127 p.target->group = entry->getKey().getGroup();
2128 p.target->element = entry->getKey().getElement(); 2128 p.target->element = entry->getKey().getElement();
2129 p.target->vr = Plugins::Convert(entry->getEVR()); 2129 p.target->vr = Plugins::Convert(FromDcmtkBridge::Convert(entry->getEVR()));
2130 p.target->minMultiplicity = static_cast<uint32_t>(entry->getVMMin()); 2130 p.target->minMultiplicity = static_cast<uint32_t>(entry->getVMMin());
2131 p.target->maxMultiplicity = (entry->getVMMax() == DcmVariableVM ? 0 : static_cast<uint32_t>(entry->getVMMax())); 2131 p.target->maxMultiplicity = (entry->getVMMax() == DcmVariableVM ? 0 : static_cast<uint32_t>(entry->getVMMax()));
2132 } 2132 }
2133 } 2133 }
2134 2134