diff OrthancFramework/Sources/HttpServer/BufferHttpSender.h @ 4200:7112a8af0b63

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Sep 2020 20:53:31 +0200
parents bf7b9edf6b81
children b30a8de92ad9
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/BufferHttpSender.h	Wed Sep 16 20:28:20 2020 +0200
+++ b/OrthancFramework/Sources/HttpServer/BufferHttpSender.h	Wed Sep 16 20:53:31 2020 +0200
@@ -58,15 +58,15 @@
      * Implementation of the IHttpStreamAnswer interface.
      **/
 
-    virtual uint64_t GetContentLength()
+    virtual uint64_t GetContentLength() ORTHANC_OVERRIDE
     {
       return buffer_.size();
     }
 
-    virtual bool ReadNextChunk();
+    virtual bool ReadNextChunk() ORTHANC_OVERRIDE;
 
-    virtual const char* GetChunkContent();
+    virtual const char* GetChunkContent() ORTHANC_OVERRIDE;
 
-    virtual size_t GetChunkSize();
+    virtual size_t GetChunkSize() ORTHANC_OVERRIDE;
   };
 }