diff OrthancServer/OrthancRestApi/OrthancRestApi.h @ 2867:251614c2edac

DicomMoveScuJob
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 08 Oct 2018 16:08:51 +0200
parents 2e6b7862ccf2
children 5dd649de253d
line wrap: on
line diff
--- a/OrthancServer/OrthancRestApi/OrthancRestApi.h	Mon Oct 08 11:40:31 2018 +0200
+++ b/OrthancServer/OrthancRestApi/OrthancRestApi.h	Mon Oct 08 16:08:51 2018 +0200
@@ -33,6 +33,7 @@
 
 #pragma once
 
+#include "../../Core/JobsEngine/SetOfCommandsJob.h"
 #include "../../Core/RestApi/RestApi.h"
 #include "../../Core/DicomParsing/DicomModification.h"
 #include "../ServerEnumerations.h"
@@ -96,5 +97,14 @@
                               const std::string& publicId,
                               ResourceType resourceType,
                               StoreStatus status) const;
+
+    void SubmitCommandsJob(RestApiPostCall& call,
+                           SetOfCommandsJob* job,
+                           bool isDefaultSynchronous,
+                           const Json::Value& body) const;
+
+    void SubmitCommandsJob(RestApiPostCall& call,
+                           SetOfCommandsJob* job,
+                           bool isDefaultSynchronous) const;
   };
 }