diff OrthancFramework/Sources/HttpServer/FilesystemHttpSender.h @ 4201:2d5209153b32

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 08:18:28 +0200
parents bf7b9edf6b81
children db3932f9660d
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/FilesystemHttpSender.h	Wed Sep 16 20:53:31 2020 +0200
+++ b/OrthancFramework/Sources/HttpServer/FilesystemHttpSender.h	Thu Sep 17 08:18:28 2020 +0200
@@ -67,19 +67,19 @@
      * Implementation of the IHttpStreamAnswer interface.
      **/
 
-    virtual uint64_t GetContentLength()
+    virtual uint64_t GetContentLength() ORTHANC_OVERRIDE
     {
       return size_;
     }
 
-    virtual bool ReadNextChunk();
+    virtual bool ReadNextChunk() ORTHANC_OVERRIDE;
 
-    virtual const char* GetChunkContent()
+    virtual const char* GetChunkContent() ORTHANC_OVERRIDE
     {
       return chunk_.c_str();
     }
 
-    virtual size_t GetChunkSize()
+    virtual size_t GetChunkSize() ORTHANC_OVERRIDE
     {
       return chunkSize_;
     }