comparison OrthancServer/ServerJobs/OrthancJobUnserializer.cpp @ 3920:82e88ff003d7 c-get

merge default -> c-get
author Alain Mazy <alain@mazy.be>
date Tue, 12 May 2020 14:58:24 +0200
parents 8f7ad4989fec
children
comparison
equal deleted inserted replaced
3918:dba48c162b7b 3920:82e88ff003d7
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 }