Mercurial > hg > orthanc
comparison 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 |
comparison
equal
deleted
inserted
replaced
4200:7112a8af0b63 | 4201:2d5209153b32 |
---|---|
58 { | 58 { |
59 } | 59 } |
60 | 60 |
61 // This is the first method to be called | 61 // This is the first method to be called |
62 virtual HttpCompression SetupHttpCompression(bool gzipAllowed, | 62 virtual HttpCompression SetupHttpCompression(bool gzipAllowed, |
63 bool deflateAllowed); | 63 bool deflateAllowed) ORTHANC_OVERRIDE; |
64 | 64 |
65 virtual bool HasContentFilename(std::string& filename) | 65 virtual bool HasContentFilename(std::string& filename) ORTHANC_OVERRIDE |
66 { | 66 { |
67 return source_.HasContentFilename(filename); | 67 return source_.HasContentFilename(filename); |
68 } | 68 } |
69 | 69 |
70 virtual std::string GetContentType() | 70 virtual std::string GetContentType() ORTHANC_OVERRIDE |
71 { | 71 { |
72 return source_.GetContentType(); | 72 return source_.GetContentType(); |
73 } | 73 } |
74 | 74 |
75 virtual uint64_t GetContentLength(); | 75 virtual uint64_t GetContentLength() ORTHANC_OVERRIDE; |
76 | 76 |
77 virtual bool ReadNextChunk(); | 77 virtual bool ReadNextChunk() ORTHANC_OVERRIDE; |
78 | 78 |
79 virtual const char* GetChunkContent(); | 79 virtual const char* GetChunkContent() ORTHANC_OVERRIDE; |
80 | 80 |
81 virtual size_t GetChunkSize(); | 81 virtual size_t GetChunkSize() ORTHANC_OVERRIDE; |
82 }; | 82 }; |
83 } | 83 } |