diff OrthancFramework/Sources/JobsEngine/Operations/StringOperationValue.h @ 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 8992faf451fc
children d9473bd5ed43
line wrap: on
line diff
--- a/OrthancFramework/Sources/JobsEngine/Operations/StringOperationValue.h	Sat Nov 07 08:02:36 2020 +0100
+++ b/OrthancFramework/Sources/JobsEngine/Operations/StringOperationValue.h	Mon Nov 09 14:40:51 2020 +0100
@@ -22,7 +22,7 @@
 
 #pragma once
 
-#include "JobOperationValue.h"
+#include "IJobOperationValue.h"
 
 #include "../../Compatibility.h"  // For ORTHANC_OVERRIDE
 
@@ -30,7 +30,7 @@
 
 namespace Orthanc
 {
-  class ORTHANC_PUBLIC StringOperationValue : public JobOperationValue
+  class ORTHANC_PUBLIC StringOperationValue : public IJobOperationValue
   {
   private:
     std::string  content_;
@@ -40,7 +40,7 @@
 
     virtual Type GetType() const ORTHANC_OVERRIDE;
     
-    virtual JobOperationValue* Clone() const ORTHANC_OVERRIDE;
+    virtual IJobOperationValue* Clone() const ORTHANC_OVERRIDE;
 
     const std::string& GetContent() const;