diff OrthancServer/ServerJobs/OrthancJobUnserializer.cpp @ 2867:251614c2edac

DicomMoveScuJob
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 08 Oct 2018 16:08:51 +0200
parents 52b017d22a4f
children 4e43e67f8ecf
line wrap: on
line diff
--- a/OrthancServer/ServerJobs/OrthancJobUnserializer.cpp	Mon Oct 08 11:40:31 2018 +0200
+++ b/OrthancServer/ServerJobs/OrthancJobUnserializer.cpp	Mon Oct 08 16:08:51 2018 +0200
@@ -46,6 +46,7 @@
 #include "Operations/SystemCallOperation.h"
 
 #include "DicomModalityStoreJob.h"
+#include "DicomMoveScuJob.h"
 #include "OrthancPeerStoreJob.h"
 #include "ResourceModificationJob.h"
 #include "MergeStudyJob.h"
@@ -88,6 +89,10 @@
     {
       return new SplitStudyJob(context_, source);
     }
+    else if (type == "DicomMoveScu")
+    {
+      return new DicomMoveScuJob(context_, source);
+    }
     else
     {
       return GenericJobUnserializer::UnserializeJob(source);