diff OrthancFramework/Sources/JobsEngine/Operations/JobOperationValues.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 b30a8de92ad9
children 93c281752e7a
line wrap: on
line diff
--- a/OrthancFramework/Sources/JobsEngine/Operations/JobOperationValues.cpp	Sat Nov 07 08:02:36 2020 +0100
+++ b/OrthancFramework/Sources/JobsEngine/Operations/JobOperationValues.cpp	Mon Nov 09 14:40:51 2020 +0100
@@ -90,7 +90,7 @@
   }
 
 
-  void JobOperationValues::Append(JobOperationValue* value)  // Takes ownership
+  void JobOperationValues::Append(IJobOperationValue* value)  // Takes ownership
   {
     if (value == NULL)
     {
@@ -108,7 +108,7 @@
   }
 
 
-  JobOperationValue& JobOperationValues::GetValue(size_t index) const
+  IJobOperationValue& JobOperationValues::GetValue(size_t index) const
   {
     if (index >= values_.size())
     {