comparison OrthancFramework/Sources/JobsEngine/GenericJobUnserializer.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 bf7b9edf6b81
children d9473bd5ed43
comparison
equal deleted inserted replaced
4309:73de065622ec 4310:2ae905070221
64 "Cannot unserialize operation of type: " + type); 64 "Cannot unserialize operation of type: " + type);
65 } 65 }
66 } 66 }
67 67
68 68
69 JobOperationValue* GenericJobUnserializer::UnserializeValue(const Json::Value& source) 69 IJobOperationValue* GenericJobUnserializer::UnserializeValue(const Json::Value& source)
70 { 70 {
71 const std::string type = SerializationToolbox::ReadString(source, "Type"); 71 const std::string type = SerializationToolbox::ReadString(source, "Type");
72 72
73 if (type == "String") 73 if (type == "String")
74 { 74 {