diff OrthancServer/OrthancMoveRequestHandler.h @ 3301:6ce10c3b1eb7

Fix issue #131 (C-MOVE failure due to duplicate StudyInstanceUID in the database)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 24 Feb 2019 08:51:15 +0100
parents beeeb6096f27
children 94f4a18a79cc
line wrap: on
line diff
--- a/OrthancServer/OrthancMoveRequestHandler.h	Sat Feb 23 15:58:59 2019 +0100
+++ b/OrthancServer/OrthancMoveRequestHandler.h	Sun Feb 24 08:51:15 2019 +0100
@@ -43,9 +43,9 @@
   private:
     ServerContext& context_;
 
-    bool LookupIdentifier(std::string& publicId,
-                          ResourceType level,
-                          const DicomMap& input);
+    bool LookupIdentifiers(std::vector<std::string>& publicIds,
+                           ResourceType level,
+                           const DicomMap& input);
 
   public:
     OrthancMoveRequestHandler(ServerContext& context) :