Mercurial > hg > orthanc
diff OrthancFramework/Sources/HttpServer/HttpStreamTranscoder.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/HttpStreamTranscoder.h Wed Sep 16 20:53:31 2020 +0200 +++ b/OrthancFramework/Sources/HttpServer/HttpStreamTranscoder.h Thu Sep 17 08:18:28 2020 +0200 @@ -60,24 +60,24 @@ // This is the first method to be called virtual HttpCompression SetupHttpCompression(bool gzipAllowed, - bool deflateAllowed); + bool deflateAllowed) ORTHANC_OVERRIDE; - virtual bool HasContentFilename(std::string& filename) + virtual bool HasContentFilename(std::string& filename) ORTHANC_OVERRIDE { return source_.HasContentFilename(filename); } - virtual std::string GetContentType() + virtual std::string GetContentType() ORTHANC_OVERRIDE { return source_.GetContentType(); } - virtual uint64_t GetContentLength(); + virtual uint64_t GetContentLength() ORTHANC_OVERRIDE; - 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; }; }