comparison OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.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 785a2713323e
children b2366bc023f8
comparison
equal deleted inserted replaced
4312:6d49e3b6ff77 4313:91554aecff9a
349 throw OrthancException(ErrorCode_ParameterOutOfRange); 349 throw OrthancException(ErrorCode_ParameterOutOfRange);
350 } 350 }
351 351
352 DcmEVR evr = ToDcmtkBridge::Convert(vr); 352 DcmEVR evr = ToDcmtkBridge::Convert(vr);
353 353
354 LOG(INFO) << "Registering tag in dictionary: " << tag << " " << (DcmVR(evr).getValidVRName()) << " " 354 LOG(INFO) << "Registering tag in dictionary: (" << tag.Format() << ") "
355 << (DcmVR(evr).getValidVRName()) << " "
355 << name << " (multiplicity: " << minMultiplicity << "-" 356 << name << " (multiplicity: " << minMultiplicity << "-"
356 << (arbitrary ? "n" : boost::lexical_cast<std::string>(maxMultiplicity)) << ")"; 357 << (arbitrary ? "n" : boost::lexical_cast<std::string>(maxMultiplicity)) << ")";
357 358
358 std::unique_ptr<DcmDictEntry> entry; 359 std::unique_ptr<DcmDictEntry> entry;
359 if (privateCreator.empty()) 360 if (privateCreator.empty())