diff Platforms/Generic/OracleWebService.h @ 274:dc1beee33134 am-2

split SdlApplication into NativeApplication and SdlApplication
author am@osimis.io
date Fri, 24 Aug 2018 13:52:55 +0200
parents 46c5296d867e
children 8c8da145fefa
line wrap: on
line diff
--- a/Platforms/Generic/OracleWebService.h	Fri Aug 24 11:26:59 2018 +0200
+++ b/Platforms/Generic/OracleWebService.h	Fri Aug 24 13:52:55 2018 +0200
@@ -25,7 +25,7 @@
 #include "Oracle.h"
 #include "WebServiceGetCommand.h"
 #include "WebServicePostCommand.h"
-#include "../../Applications/Sdl/BasicSdlApplicationContext.h"
+#include "../../Applications/Generic/BasicNativeApplicationContext.h"
 
 namespace OrthancStone
 {
@@ -33,14 +33,14 @@
   {
   private:
     Oracle&                        oracle_;
-    BasicSdlApplicationContext&    context_;
+    BasicNativeApplicationContext& context_;
     Orthanc::WebServiceParameters  parameters_;
 
   public:
     OracleWebService(MessageBroker& broker,
                      Oracle& oracle,
                      const Orthanc::WebServiceParameters& parameters,
-                     BasicSdlApplicationContext& context) :
+                     BasicNativeApplicationContext& context) :
       IWebService(broker),
       oracle_(oracle),
       context_(context),