comparison OrthancServer/ServerJobs/OrthancJobUnserializer.cpp @ 3894:8f7ad4989fec transcoding

transcoding to uncompressed transfer syntaxes over DICOM protocol is implemented
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 May 2020 11:13:29 +0200
parents 6498739a3c3c
children
comparison
equal deleted inserted replaced
3893:7a5fa8f307e9 3894:8f7ad4989fec
125 return new StorePeerOperation(source); 125 return new StorePeerOperation(source);
126 } 126 }
127 else if (type == "StoreScu") 127 else if (type == "StoreScu")
128 { 128 {
129 return new StoreScuOperation( 129 return new StoreScuOperation(
130 context_.GetLuaScripting().GetDicomConnectionManager(), source); 130 context_, context_.GetLuaScripting().GetDicomConnectionManager(), source);
131 } 131 }
132 else if (type == "SystemCall") 132 else if (type == "SystemCall")
133 { 133 {
134 return new SystemCallOperation(source); 134 return new SystemCallOperation(source);
135 } 135 }