diff Plugins/Samples/Common/OrthancPluginCppWrapper.h @ 3392:ad434967a68c

renames
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 06 Jun 2019 10:35:16 +0200
parents 18cd4951fccc
children 2cd0369a156f
line wrap: on
line diff
--- a/Plugins/Samples/Common/OrthancPluginCppWrapper.h	Thu Jun 06 10:19:28 2019 +0200
+++ b/Plugins/Samples/Common/OrthancPluginCppWrapper.h	Thu Jun 06 10:35:16 2019 +0200
@@ -790,10 +790,10 @@
   {
   public:
 #if HAS_ORTHANC_PLUGIN_HTTP_CHUNKED_BODY == 1
-    class IChunkedBody : public boost::noncopyable
+    class IRequestChunkedBody : public boost::noncopyable
     {
     public:
-      virtual ~IChunkedBody()
+      virtual ~IRequestChunkedBody()
       {
       }
 
@@ -821,8 +821,8 @@
     std::string              body_;
 
 #if HAS_ORTHANC_PLUGIN_HTTP_CHUNKED_BODY == 1
-    class ChunkedBody;
-    IChunkedBody*            chunkedBody_;
+    class RequestChunkedBody;
+    IRequestChunkedBody*     chunkedBody_;
 #else
     // Dummy variable for backward compatibility
     void*                    chunkedBody_;
@@ -895,7 +895,7 @@
     void SetBody(const std::string& body);
 
 #if HAS_ORTHANC_PLUGIN_HTTP_CHUNKED_BODY == 1
-    void SetBody(IChunkedBody& body);
+    void SetBody(IRequestChunkedBody& body);
 #endif
 
     void Execute();