changeset 111:2be81c3f1b25

note
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 28 Apr 2016 15:13:07 +0200
parents 4fa66776ba09
children 528d18573c09
files Plugin/QidoRs.cpp
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Plugin/QidoRs.cpp	Thu Apr 28 15:07:35 2016 +0200
+++ b/Plugin/QidoRs.cpp	Thu Apr 28 15:13:07 2016 +0200
@@ -465,6 +465,10 @@
   OrthancPlugins::DicomResults results(context_, output, wadoBase, *dictionary_, IsXmlExpected(request), true);
 
 #if 0
+  // Implementation up to version 0.2 of the plugin. Each instance is
+  // downloaded and decoded using GDCM, which slows down things
+  // wrt. the new implementation below that directly uses the Orthanc
+  // pre-computed JSON summary.
   for (std::list<std::string>::const_iterator
          it = instances.begin(); it != instances.end(); it++)
   {
@@ -480,6 +484,7 @@
   }
 
 #else
+  // Fix of issue #13
   for (std::list<std::string>::const_iterator
          it = instances.begin(); it != instances.end(); it++)
   {