comparison OrthancServer/Sources/ServerJobs/OrthancJobUnserializer.cpp @ 4310:2ae905070221

renaming pure interface JobOperationValue as IJobOperationValue
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Nov 2020 14:40:51 +0100
parents 05b8fd21089c
children d9473bd5ed43
comparison
equal deleted inserted replaced
4309:73de065622ec 4310:2ae905070221
138 return GenericJobUnserializer::UnserializeOperation(source); 138 return GenericJobUnserializer::UnserializeOperation(source);
139 } 139 }
140 } 140 }
141 141
142 142
143 JobOperationValue* OrthancJobUnserializer::UnserializeValue(const Json::Value& source) 143 IJobOperationValue* OrthancJobUnserializer::UnserializeValue(const Json::Value& source)
144 { 144 {
145 const std::string type = SerializationToolbox::ReadString(source, "Type"); 145 const std::string type = SerializationToolbox::ReadString(source, "Type");
146 146
147 if (type == "DicomInstance") 147 if (type == "DicomInstance")
148 { 148 {