diff Framework/Toolbox/OrthancSeriesLoader.cpp @ 31:9aace933cb64

sharing code with the Orthanc core
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Dec 2016 15:41:20 +0100
parents ff1e935768e7
children 517c46f527cd
line wrap: on
line diff
--- a/Framework/Toolbox/OrthancSeriesLoader.cpp	Wed Dec 14 17:05:41 2016 +0100
+++ b/Framework/Toolbox/OrthancSeriesLoader.cpp	Fri Dec 16 15:41:20 2016 +0100
@@ -137,7 +137,7 @@
       std::sort(slices_.begin(), slices_.end(), comparator);
     }
 
-    void LoadSeriesFast(IOrthancConnection&  orthanc,
+    void LoadSeriesFast(OrthancPlugins::IOrthancConnection&  orthanc,
                         const std::string& series)
     {
       // Retrieve the orientation of this series
@@ -203,7 +203,7 @@
     }
 
       
-    void LoadSeriesSafe(IOrthancConnection& orthanc,
+    void LoadSeriesSafe(OrthancPlugins::IOrthancConnection& orthanc,
                         const std::string& seriesId)
     {
       Json::Value series;
@@ -331,7 +331,7 @@
 
 
 
-  OrthancSeriesLoader::OrthancSeriesLoader(IOrthancConnection& orthanc,
+  OrthancSeriesLoader::OrthancSeriesLoader(OrthancPlugins::IOrthancConnection& orthanc,
                                            const std::string& series) :
     orthanc_(orthanc),
     slices_(new SetOfSlices)