comparison OrthancServer/ServerContext.h @ 3959:76a24be12912 c-get

c-get: support of transcoding
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 20 May 2020 18:29:04 +0200
parents 5fe8c6d3212e
children e42f5445d20d
comparison
equal deleted inserted replaced
3958:596912ebab5f 3959:76a24be12912
481 // "TranscodeDicomProtocol" is set to "false" 481 // "TranscodeDicomProtocol" is set to "false"
482 virtual bool Transcode(DicomImage& target, 482 virtual bool Transcode(DicomImage& target,
483 DicomImage& source /* in, "GetParsed()" possibly modified */, 483 DicomImage& source /* in, "GetParsed()" possibly modified */,
484 const std::set<DicomTransferSyntax>& allowedSyntaxes, 484 const std::set<DicomTransferSyntax>& allowedSyntaxes,
485 bool allowNewSopInstanceUid) ORTHANC_OVERRIDE; 485 bool allowNewSopInstanceUid) ORTHANC_OVERRIDE;
486
487 bool IsTranscodeDicomProtocol() const
488 {
489 return transcodeDicomProtocol_;
490 }
486 }; 491 };
487 } 492 }