diff Platforms/Generic/WebServiceCommandBase.h @ 726:4f2416d519b4

moving layers, widgets and loaders to Deprecated namespace
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 21 May 2019 11:43:25 +0200
parents b70e9be013e4
children c35e98d22764
line wrap: on
line diff
--- a/Platforms/Generic/WebServiceCommandBase.h	Mon May 20 16:26:34 2019 +0200
+++ b/Platforms/Generic/WebServiceCommandBase.h	Tue May 21 11:43:25 2019 +0200
@@ -32,13 +32,13 @@
 
 #include <memory>
 
-namespace OrthancStone
+namespace Deprecated
 {
-  class WebServiceCommandBase : public IOracleCommand, IObservable
+  class WebServiceCommandBase : public IOracleCommand, OrthancStone::IObservable
   {
   protected:
-    std::auto_ptr<MessageHandler<IWebService::HttpRequestSuccessMessage> >  successCallback_;
-    std::auto_ptr<MessageHandler<IWebService::HttpRequestErrorMessage> >    failureCallback_;
+    std::auto_ptr<OrthancStone::MessageHandler<IWebService::HttpRequestSuccessMessage> >  successCallback_;
+    std::auto_ptr<OrthancStone::MessageHandler<IWebService::HttpRequestErrorMessage> >    failureCallback_;
     Orthanc::WebServiceParameters           parameters_;
     std::string                             url_;
     IWebService::HttpHeaders                headers_;
@@ -46,19 +46,19 @@
     bool                                    success_;
     std::string                             answer_;
     IWebService::HttpHeaders                answerHeaders_;
-    NativeStoneApplicationContext&          context_;
+    OrthancStone::NativeStoneApplicationContext&          context_;
     unsigned int                            timeoutInSeconds_;
 
   public:
-    WebServiceCommandBase(MessageBroker& broker,
-                          MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback,  // takes ownership
-                          MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback,  // takes ownership
+    WebServiceCommandBase(OrthancStone::MessageBroker& broker,
+                          OrthancStone::MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback,  // takes ownership
+                          OrthancStone::MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback,  // takes ownership
                           const Orthanc::WebServiceParameters& parameters,
                           const std::string& url,
                           const IWebService::HttpHeaders& headers,
                           unsigned int timeoutInSeconds,
                           Orthanc::IDynamicObject* payload /* takes ownership */,
-                          NativeStoneApplicationContext& context
+                          OrthancStone::NativeStoneApplicationContext& context
                           );
 
     virtual void Execute() = 0;