diff Core/JobsEngine/Operations/JobOperationValue.h @ 2616:2f3007bf0708 jobs

event queues in Lua, serialization of sequence of operations
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 22 May 2018 12:25:37 +0200
parents 5b6c3d77a2a1
children 4e43e67f8ecf
line wrap: on
line diff
--- a/Core/JobsEngine/Operations/JobOperationValue.h	Mon May 21 09:00:20 2018 +0200
+++ b/Core/JobsEngine/Operations/JobOperationValue.h	Tue May 22 12:25:37 2018 +0200
@@ -33,6 +33,7 @@
 
 #pragma once
 
+#include <json/value.h>
 #include <boost/noncopyable.hpp>
 
 namespace Orthanc
@@ -67,5 +68,7 @@
     }
 
     virtual JobOperationValue* Clone() const = 0;
+
+    virtual void Serialize(Json::Value& target) const = 0;
   };
 }