comparison Core/DicomParsing/MemoryBufferTranscoder.h @ 3951:5fe8c6d3212e transcoding

removed useless information "hasSopInstanceUidChanged"
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 19 May 2020 21:06:53 +0200
parents 0b3256c3ee14
children
comparison
equal deleted inserted replaced
3950:5797ca4f3b8d 3951:5fe8c6d3212e
40 // This is the basis class for transcoding plugins 40 // This is the basis class for transcoding plugins
41 class MemoryBufferTranscoder : public IDicomTranscoder 41 class MemoryBufferTranscoder : public IDicomTranscoder
42 { 42 {
43 protected: 43 protected:
44 virtual bool TranscodeBuffer(std::string& target, 44 virtual bool TranscodeBuffer(std::string& target,
45 bool& hasSopInstanceUidChanged /* out */,
46 const void* buffer, 45 const void* buffer,
47 size_t size, 46 size_t size,
48 const std::set<DicomTransferSyntax>& allowedSyntaxes, 47 const std::set<DicomTransferSyntax>& allowedSyntaxes,
49 bool allowNewSopInstanceUid) = 0; 48 bool allowNewSopInstanceUid) = 0;
50 49
51 public: 50 public:
52 virtual bool Transcode(DicomImage& target /* out */, 51 virtual bool Transcode(DicomImage& target /* out */,
53 bool& hasSopInstanceUidChanged /* out */,
54 DicomImage& source, 52 DicomImage& source,
55 const std::set<DicomTransferSyntax>& allowedSyntaxes, 53 const std::set<DicomTransferSyntax>& allowedSyntaxes,
56 bool allowNewSopInstanceUid) ORTHANC_OVERRIDE; 54 bool allowNewSopInstanceUid) ORTHANC_OVERRIDE;
57 }; 55 };
58 } 56 }